Api/Brizco.Domain/Dtos/SmallDtos/ShiftPlanSDto.cs

22 lines
890 B
C#
Raw Permalink Normal View History

2024-08-11 19:20:09 +03:30
namespace Brizco.Domain.Dtos.SmallDtos;
public class ShiftPlanSDto : BaseDto<ShiftPlanSDto,ShiftPlan>
{
public DateTime PlanFor { get; set; }
public bool IsCompleted { get; set; }
public int UndoneActivitiesCount { get; set; }
public int DoneActivitiesCount { get; set; }
public int TotalActivitiesCount { get; set; }
2024-02-27 14:20:41 +03:30
public int StaffCount { get; set; }
public int CompletePercent { get; set; }
public string SupervisorFullName { get; set; } = string.Empty;
public string CompleteDescription { get; set; } = string.Empty;
public Guid ComplexId { get; set; }
public Guid ShiftId { get; set; }
public string ShiftTitle { get; set; } = string.Empty;
public TimeSpan StartAt { get; set; }
public TimeSpan EndAt { get; set; }
2024-07-31 10:18:38 +03:30
public Guid SupervisorId { get; set; }
2024-03-06 23:22:53 +03:30
public List<ShiftPlanUserSDto> Users { get; set; } = new();
}