diff options
Diffstat (limited to 'Software/Visual_Studio_v2/Tango.BLL/Objects/Machine.cs')
| -rw-r--r-- | Software/Visual_Studio_v2/Tango.BLL/Objects/Machine.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Software/Visual_Studio_v2/Tango.BLL/Objects/Machine.cs b/Software/Visual_Studio_v2/Tango.BLL/Objects/Machine.cs new file mode 100644 index 000000000..067d6aeb4 --- /dev/null +++ b/Software/Visual_Studio_v2/Tango.BLL/Objects/Machine.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tango.BLL.Objects +{ + public class Machine : ObjectBase + { + public string ID { get; set; } + + public DateTime LastUpdated { get; set; } + + public string SerialNumber { get; set; } + + public DateTime ProductionDate { get; set; } + + public string OrganizationID { get; set; } + + public string MachineVersionID { get; set; } + + public MachineConfiguration Configuration { get; set; } + + public MachineSettings Settings { get; set; } + + public Machine() + { + Configuration = new MachineConfiguration(); + Settings = new MachineSettings(); + } + } +} |
