using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.BL.DTO { public class MachineDTO : MachineDTOBase { public ConfigurationDTO Configuration { get; set; } //public List Cats { get; set; } public List Spools { get; set; } public MachineDTO() { //Cats = new List(); Spools = new List(); } //protected override bool OnShouldActionLogIgnore(string propName) //{ // return propName == nameof(MachineDTO.Cats); //} protected override string OnGetActionLogName() { return $"Machine '{SerialNumber}'"; } } }