Files
Backend-Api/CompanyManagment.App.Contracts/RollCall/GroupedRollCalls.cs

15 lines
409 B
C#

using System;
using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.RollCall;
public class GroupedRollCalls
{
public TimeSpan SumOneDaySpan { get; set; }
public TimeSpan AfterSubtractRestSpan { get; set; }
public DateTime CreationDate { get; set; }
public bool HasFriday { get; set; }
public List<ShiftList> ShiftList { get; set; }
public TimeSpan BreakTime { get; set; }
}