Api/Brizco.Domain/Dtos/ResponseDto/RoutineShiftResponseDto.cs

7 lines
182 B
C#

namespace Brizco.Domain.Dtos.ResponseDto;
public class RoutineShiftResponseDto
{
public DayOfWeek Day { get; set; }
public List<ShiftSDto> Shifts { get; set; } = new();
}