using Aitex.Core.Util; using Caliburn.Micro; using Caliburn.Micro.Core; using FurnaceUI.Models; using MECF.Framework.Common.DataCenter; using MECF.Framework.Common.OperationCenter; using MECF.Framework.UI.Client.CenterViews.Editors.Recipe; using MECF.Framework.UI.Client.CenterViews.Editors.Sequence; using OpenSEMI.ClientBase; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace FurnaceUI.Views.Jobs { public class JobInfo : PropertyChangedBase { private string _no; public string No { get { return _no; } set { _no = value; NotifyOfPropertyChange("No"); } } private string _jobID; public string JobID { get { return _jobID; } set { _jobID = value; NotifyOfPropertyChange("JobID"); } } private string _jobRecipeName; public string JobRecipeName { get { return _jobRecipeName; } set { _jobRecipeName = value; NotifyOfPropertyChange("JobRecipeName"); } } private string _processRecipeName; public string ProcessRecipeName { get { return _processRecipeName; } set { _processRecipeName = value; NotifyOfPropertyChange("ProcessRecipeName"); } } private string _layoutRecipeName; public string LayoutRecipeName { get { return _layoutRecipeName; } set { _layoutRecipeName = value; NotifyOfPropertyChange("LayoutRecipeName"); } } private string _pCarrierPara; public string PCarrierPara { get { return _pCarrierPara; } set { _pCarrierPara = value; NotifyOfPropertyChange("PCarrierPara"); } } private string _mCarrierPara; public string MCarrierPara { get { return _mCarrierPara; } set { _mCarrierPara = value; NotifyOfPropertyChange("MCarrierPara"); } } } }