blob: 067d6aeb4f64c6320b406c45e4d9afa5fdcdec32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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();
}
}
}
|