using Core; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using static Core.Enum; // // This is here so CodeMaid doesn't reorganize this document // namespace LiMan.DB.DTO { public class DeviceDTO { public string CodImp { get; set; } = ""; public string CodInst { get; set; } = ""; public string DevName { get; set; } = ""; public DateTime LastUpdate { get; set; } = DateTime.Today.AddYears(-1); } }