Api/Brizco.Domain/Dtos/SmallDtos/ShiftDaySDto.cs

9 lines
227 B
C#

using Brizco.Domain.Entities.Shifts;
namespace Brizco.Domain.Dtos.SmallDtos;
public class ShiftDaySDto : BaseDto<ShiftDaySDto,ShiftDay>
{
public DayOfWeek DayOfWeek { get; set; }
public Guid ShiftId { get; set; }
}