new sidbar - client changes - vafa

This commit is contained in:
samsys
2024-07-21 21:05:30 +03:30
parent c0a87834a5
commit 88fbea0a39
41 changed files with 8120 additions and 6061 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace CompanyManagment.App.Contracts.RollCall;
public class GroupedRollCalls
{
public TimeSpan SumOneDaySpan { get; set; }
public TimeSpan AfterSubtractRestSpan { get; set; }
public DateTime CreationDate { get; set; }
}

View File

@@ -13,4 +13,5 @@ public class RollCallViewModel
public int Year { get; set; }
public int Month { get; set; }
public TimeSpan ShiftSpan { get; set; }
public DateTime CreationDate { get; set; }
}