2024-07-06 21:20:10 +03:30
|
|
|
|
using Brizco.Domain.Entities.Shifts;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.LargeDtos;
|
2023-09-18 15:41:41 +03:30
|
|
|
|
|
|
|
|
|
|
public class ShiftPlanLDto : BaseDto<ShiftPlanLDto , ShiftPlan>
|
|
|
|
|
|
{
|
2023-11-20 18:30:01 +03:30
|
|
|
|
public DateTime PlanFor { get; set; }
|
|
|
|
|
|
public Guid RoutineId { get; set; }
|
2024-02-21 02:07:41 +03:30
|
|
|
|
public bool IsCompleted { get; set; }
|
|
|
|
|
|
public int CompletePercent { get; set; }
|
|
|
|
|
|
public string CompleteDescription { get; set; } = string.Empty;
|
2023-09-18 15:41:41 +03:30
|
|
|
|
public Guid ShiftId { get; set; }
|
2023-11-20 18:30:01 +03:30
|
|
|
|
public List<ShiftPlanUserSDto> Users { get; set; } = new();
|
2024-02-21 02:07:41 +03:30
|
|
|
|
public Guid SupervisorId { get; set; }
|
|
|
|
|
|
public string SupervisorFullName { get; set; } = string.Empty;
|
2023-09-18 15:41:41 +03:30
|
|
|
|
}
|