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

11 lines
390 B
C#
Raw Normal View History

2023-11-14 16:21:49 +03:30
namespace Brizco.Domain.Dtos.LargDtos;
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; }
public List<ShiftDaySDto> Days { get; set; } = new();
}