2024-08-11 19:20:09 +03:30
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
2023-09-18 15:41:41 +03:30
|
|
|
|
|
|
|
|
|
|
public class ShiftPlanSDto : BaseDto<ShiftPlanSDto,ShiftPlan>
|
|
|
|
|
|
{
|
2024-04-25 02:33:17 +03:30
|
|
|
|
public DateTime PlanFor { get; set; }
|
|
|
|
|
|
public bool IsCompleted { get; set; }
|
2023-12-11 14:32:29 +03:30
|
|
|
|
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; }
|
2024-04-25 02:33:17 +03:30
|
|
|
|
public int CompletePercent { get; set; }
|
|
|
|
|
|
public string SupervisorFullName { get; set; } = string.Empty;
|
|
|
|
|
|
public string CompleteDescription { get; set; } = string.Empty;
|
2024-07-08 17:45:17 +03:30
|
|
|
|
public Guid ComplexId { get; set; }
|
2023-09-18 15:41:41 +03:30
|
|
|
|
public Guid ShiftId { get; set; }
|
2024-04-25 02:33:17 +03:30
|
|
|
|
public string ShiftTitle { get; set; } = string.Empty;
|
2024-05-06 14:08:15 +03:30
|
|
|
|
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();
|
2023-09-18 15:41:41 +03:30
|
|
|
|
}
|