2026-03-17 22:10:19 +01:00
|
|
|
namespace WorkTracker.Domain;
|
|
|
|
|
|
|
|
|
|
public sealed class MonthlySummaryModel
|
|
|
|
|
{
|
|
|
|
|
public int Year { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Month { get; set; }
|
|
|
|
|
|
|
|
|
|
public decimal TotalWorkedHours { get; set; }
|
|
|
|
|
|
2026-04-20 16:11:27 +02:00
|
|
|
public decimal TotalPreviewWorkedHours { get; set; }
|
|
|
|
|
|
|
|
|
|
public int CountedWorkUnits { get; set; }
|
|
|
|
|
|
|
|
|
|
public int PreviewWorkUnits { get; set; }
|
|
|
|
|
|
2026-03-17 22:10:19 +01:00
|
|
|
public int OfficeDays { get; set; }
|
|
|
|
|
|
|
|
|
|
public int HomeDays { get; set; }
|
|
|
|
|
|
|
|
|
|
public int HolidayDays { get; set; }
|
|
|
|
|
|
|
|
|
|
public int SickDays { get; set; }
|
|
|
|
|
|
|
|
|
|
public int DaysOff { get; set; }
|
|
|
|
|
|
|
|
|
|
public int ClosureDays { get; set; }
|
|
|
|
|
|
|
|
|
|
public decimal TotalHoursOff { get; set; }
|
|
|
|
|
|
|
|
|
|
public decimal TotalGrossIncome { get; set; }
|
|
|
|
|
|
|
|
|
|
public decimal TotalNetIncome { get; set; }
|
|
|
|
|
|
|
|
|
|
public int TotalWorkingDays { get; set; }
|
|
|
|
|
}
|