using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Data; namespace GPW.CORE.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // public partial class TimbMeseExplModel { public int Anno { get; set; } = 0; public int Mese { get; set; } = 0; public int IdxDipendente { get; set; } = 0; //public string? CognomeNome { get; set; } = ""; public double totOreOrd { get; set; } = 0; public double totOreFest { get; set; }= 0; public double totOreDaLav { get; set; } = 0; public double totOrePerm { get; set; }= 0; public double totOreFer { get; set; } = 0; public double totOreMal { get; set; }= 0; public double totLav { get; set; } = 0; public double totOreNonLav { get; set; } = 0; public double totOreStra { get; set; } = 0; public double totOreCassa { get; set; } = 0; public double totOre104 { get; set; } = 0; } }