24 lines
708 B
C#
24 lines
708 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GPW.CORE.Data.DTO
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
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;
|
|
}
|
|
}
|