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

11 lines
331 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 Guid ShiftId { get; set; }
public List<ShiftPlanUserSDto> Users { get; set; } = new();
}