using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GPW.CORE.Data.DTO { // // This is here so CodeMaid doesn't reorganize this document // public class WeekStatDTO { public int Anno { get; set; } = DateTime.Today.Year; public int WeekNumber { get; set; } = 1; public DateTime Inizio { get; set; } = DateTime.Today; public DateTime Fine { get; set; } = DateTime.Today.AddDays(1); public int IdxDipendente { get; set; } = 0; public double SumOreLav { get; set; } = 0; public double SumOreComm { get; set; } = 0; } }