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

7 lines
182 B
C#
Raw Normal View History

2023-11-19 22:06:49 +03:30
namespace Brizco.Domain.Dtos.ResponseDto;
public class RoutineShiftResponseDto
{
public DayOfWeek Day { get; set; }
public List<ShiftSDto> Shifts { get; set; } = new();
}