using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DatabaseModels { [Table("ODL_Energy")] public partial class OdlEnergyModel { [Key] public int IdxOdl { get; set; } public string KeyRichiesta { get; set; } public string CodArticolo { get; set; } = ""; public string DescArticolo { get; set; } = ""; public decimal TCAssegnato { get; set; } public string IdxMacchina { get; set; } public DateTime? DataInizio { get; set; } public DateTime? DataFine { get; set; } public decimal TotCount { get; set; } = 0; public decimal TotWatt { get; set; } = 0; public decimal TotGas { get; set; } = 0; } }