7 lines
189 B
C#
7 lines
189 B
C#
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|||
|
|
|
|||
|
|
public class ShiftDaySDto : BaseDto<ShiftDaySDto,ShiftDay>
|
|||
|
|
{
|
|||
|
|
public DayOfWeek DayOfWeek { get; set; }
|
|||
|
|
public Guid ShiftId { get; set; }
|
|||
|
|
}
|