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

7 lines
189 B
C#
Raw Normal View History

2023-11-14 16:21:49 +03:30
namespace Brizco.Domain.Dtos.SmallDtos;
public class ShiftDaySDto : BaseDto<ShiftDaySDto,ShiftDay>
{
public DayOfWeek DayOfWeek { get; set; }
public Guid ShiftId { get; set; }
}