//------------------------------------------------------------------------------ // // This code was generated by a tool. // Tango Observables Generator // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. Do not modify! // //------------------------------------------------------------------------------ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; namespace Tango.BL.DTO { public abstract class MachineDTOBase : ObservableEntityDTO { /// /// serial number /// public String SerialNumber { get; set; } /// /// name /// public String Name { get; set; } /// /// production date /// public DateTime ProductionDate { get; set; } /// /// organization guid /// public String OrganizationGuid { get; set; } /// /// site guid /// public String SiteGuid { get; set; } /// /// machine version guid /// public String MachineVersionGuid { get; set; } /// /// configuration guid /// public String ConfigurationGuid { get; set; } /// /// default rml guid /// public String DefaultRmlGuid { get; set; } /// /// loaded rml guid /// public String LoadedRmlGuid { get; set; } /// /// target job types /// public String TargetJobTypes { get; set; } /// /// target color space codes /// public String TargetColorSpaceCodes { get; set; } /// /// default color space guid /// public String DefaultColorSpaceGuid { get; set; } /// /// default segment length /// public Double DefaultSegmentLength { get; set; } /// /// default spool type guid /// public String DefaultSpoolTypeGuid { get; set; } /// /// os key /// public String OsKey { get; set; } /// /// auto login /// public Boolean AutoLogin { get; set; } /// /// auto check for updates /// public Boolean AutoCheckForUpdates { get; set; } /// /// setup activation /// public Boolean SetupActivation { get; set; } /// /// setup remote assistance /// public Boolean SetupRemoteAssistance { get; set; } /// /// setup uwf /// public Boolean SetupUwf { get; set; } /// /// setup firmware /// public Boolean SetupFirmware { get; set; } /// /// setup fpga /// public Boolean SetupFpga { get; set; } /// /// is demo /// public Boolean IsDemo { get; set; } /// /// suspend version update /// public Boolean SuspendVersionUpdate { get; set; } /// /// force version update /// public Boolean ForceVersionUpdate { get; set; } /// /// perform schema update on data update /// public Boolean PerformSchemaUpdateOnDataUpdate { get; set; } /// /// device com port /// public String DeviceComPort { get; set; } /// /// is device registered /// public Boolean IsDeviceRegistered { get; set; } /// /// device id /// public String DeviceId { get; set; } /// /// device name /// public String DeviceName { get; set; } /// /// head type /// public Int32 HeadType { get; set; } /// /// activation key /// public String ActivationKey { get; set; } /// /// light inks installed /// public Boolean LightInksInstalled { get; set; } /// /// btsr installed /// public Boolean BtsrInstalled { get; set; } /// /// version tag /// public String VersionTag { get; set; } /// /// machine type /// public Int32 MachineType { get; set; } /// /// allow sms notifications /// public Boolean AllowSmsNotifications { get; set; } } }