Api/Brizco.Domain/Dtos/LargeDtos/ShiftPlanLDto.cs

14 lines
560 B
C#
Raw Normal View History

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