14 lines
513 B
C#
14 lines
513 B
C#
using Brizco.Domain.Entities.Shift;
|
|
|
|
namespace Brizco.Domain.Dtos.LargDtos;
|
|
|
|
public class ShiftPlanLDto : BaseDto<ShiftPlanLDto , ShiftPlan>
|
|
{
|
|
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; }
|
|
public List<ShiftPlanUserSDto> Users { get; set; } = new();
|
|
} |