2023-09-18 15:41:41 +03:30
|
|
|
|
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; }
|
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();
|
2023-09-18 15:41:41 +03:30
|
|
|
|
}
|