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

14 lines
513 B
C#
Raw Normal View History

using Brizco.Domain.Entities.Shift;
namespace Brizco.Domain.Dtos.LargDtos;
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; internal set; }
public int CompletePercent { get; internal set; }
public string CompleteDescription { get; internal set; } = string.Empty;
public Guid ShiftId { get; set; }
2023-11-20 18:30:01 +03:30
public List<ShiftPlanUserSDto> Users { get; set; } = new();
}