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; // // This is here so CodeMaid doesn't reorganize this document // namespace Lux.Data.DbModel { [Table("RegResource")] public class ResourceModel { /// /// ID del record /// [Key] public int ResourceID { get; set; } /// /// Descrizione /// public string Description { get; set; } = ""; /// /// Indica gli assec/cespiti /// public bool IsAsset { get; set; } = false; /// /// Indica che è un operatore umano /// public bool IsHuman { get; set; } = false; /// /// Costo unitario risorsa /// public double UnitCost { get; set; } = 0; /// /// Unità di misura della risorsa /// public string UM { get; set; } = ""; } }