123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using Caliburn.Micro.Core;
- using OpenSEMI.ClientBase;
- namespace Virgo_DUI.Client.Models.Operate.WaferAssociation
- {
- public class WaferAssociationInfo : PropertyChangedBase
- {
- private int _slotFrom = 1;
- public int SlotFrom
- {
- get { return _slotFrom; }
- set { _slotFrom = value; NotifyOfPropertyChange("SlotFrom"); }
- }
- private int _slotTo = 25;
- public int SlotTo
- {
- get { return _slotTo; }
- set { _slotTo = value; NotifyOfPropertyChange("SlotTo"); }
- }
- private string _sequenceName = string.Empty;
- public string SequenceName
- {
- get { return _sequenceName; }
- set { _sequenceName = value; NotifyOfPropertyChange("SequenceName"); }
- }
- private string _JobID = string.Empty;
- public string JobID
- {
- get { return _JobID; }
- set { _JobID = value; NotifyOfPropertyChange("JobID"); }
- }
- private ModuleInfo _ModuleData;
- public ModuleInfo ModuleData
- {
- get { return _ModuleData; }
- set { _ModuleData = value; NotifyOfPropertyChange("ModuleData"); }
- }
- private string _JobStatus = string.Empty;
- public string JobStatus
- {
- get { return _JobStatus; }
- set { _JobStatus = value; NotifyOfPropertyChange("JobStatus"); }
- }
- }
- }
|