2024-07-06 21:20:10 +03:30
|
|
|
|
using Brizco.Domain.Entities.Shifts;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.LargeDtos;
|
2023-11-14 16:21:49 +03:30
|
|
|
|
|
|
|
|
|
|
public class ShiftLDto : BaseDto<ShiftLDto,Shift>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
|
|
public TimeSpan StartAt { get; set; }
|
|
|
|
|
|
public TimeSpan EndAt { get; set; }
|
|
|
|
|
|
public Guid ComplexId { get; set; }
|
2023-11-18 22:23:23 +03:30
|
|
|
|
public List<DayOfWeek> Days { get; set; } = new();
|
|
|
|
|
|
public List<ShiftRoutineSDto> Routines { get; set; } = new();
|
2023-11-14 16:21:49 +03:30
|
|
|
|
}
|