feat: Implement sidebar toggle functionality and enhance Monthly Timesheet summary view
This commit is contained in:
parent
cab549ab3a
commit
a7f8dfba01
13 changed files with 686 additions and 58 deletions
26
Domain/MonthlyTimesheetDaySummary.cs
Normal file
26
Domain/MonthlyTimesheetDaySummary.cs
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
namespace WorkTracker.Domain;
|
||||
|
||||
public sealed class MonthlyTimesheetDaySummary
|
||||
{
|
||||
public DateOnly Date { get; set; }
|
||||
|
||||
public decimal OfficeHours { get; set; }
|
||||
|
||||
public decimal HomeHours { get; set; }
|
||||
|
||||
public decimal OvertimeHours { get; set; }
|
||||
|
||||
public decimal WeekendHours { get; set; }
|
||||
|
||||
public decimal NightHours { get; set; }
|
||||
|
||||
public decimal VacationDays { get; set; }
|
||||
|
||||
public decimal PermitHours { get; set; }
|
||||
|
||||
public decimal CompensatoryRestDays { get; set; }
|
||||
|
||||
public decimal SickDays { get; set; }
|
||||
|
||||
public decimal HolidayDays { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue