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(); } } }