diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO/MachineDTO.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/DTO/MachineDTO.cs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/MachineDTO.cs b/Software/Visual_Studio/Tango.BL/DTO/MachineDTO.cs index c6758aeff..4b8dcbeee 100644 --- a/Software/Visual_Studio/Tango.BL/DTO/MachineDTO.cs +++ b/Software/Visual_Studio/Tango.BL/DTO/MachineDTO.cs @@ -11,21 +11,17 @@ namespace Tango.BL.DTO { public ConfigurationDTO Configuration { get; set; } - //public List<CatDTO> Cats { get; set; } + public OrganizationDTO Organization { get; set; } + + public MachineVersionDTO MachineVersion { get; set; } public List<SpoolDTO> Spools { get; set; } public MachineDTO() { - //Cats = new List<CatDTO>(); Spools = new List<SpoolDTO>(); } - //protected override bool OnShouldActionLogIgnore(string propName) - //{ - // return propName == nameof(MachineDTO.Cats); - //} - protected override string OnGetActionLogName() { return $"Machine '{SerialNumber}'"; |
