using Core; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; 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 UpdaterDTO { /// /// Codice impiego (univoco x device) /// [Key] public string CodImp { get; set; } = ""; /// /// Nome App updater /// public string AppName { get; set; } = "Nemo"; /// /// Versione updater /// public string AppVers { get; set; } = "0.0.0.0"; /// /// Cod installazione /// public string CodInst { get; set; } = ""; /// /// Cod Cliente /// public string Cliente { get; set; } = ""; /// /// Data ora ultima comunicaziione /// public DateTime DtLastCom { get; set; } = DateTime.Today.AddYears(-1); /// /// Num App gestite /// public int NumApp { get; set; } = 0; /// /// Num file licenza gestite /// public int NumLicenze { get; set; } = 0; /// /// Numero Istsanze complessive (App x Istanze) /// public int NumIstanze { get; set; } = 0; } }