diff options
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/JobModel.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/JobModel.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/JobModel.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/JobModel.cs index d2ad7e96b..0009fce24 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/JobModel.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/JobModel.cs @@ -335,6 +335,24 @@ namespace Tango.PPC.Jobs.Models get { return SpoolType.Guid; } } + private int _copies; + + public int Copies + { + get { return _copies; } + set { _copies = value; RaisePropertyChangedAuto(); } + } + + private int _devidedBySpools; + + public int DevidedBySpools + { + get { return _devidedBySpools; } + set { _devidedBySpools = value; RaisePropertyChangedAuto(); } + } + + + protected User _user; /// <summary> |
