2024-07-06 21:20:10 +03:30
|
|
|
|
using Brizco.Domain.Entities.Shifts;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
2023-11-14 16:21:49 +03:30
|
|
|
|
|
|
|
|
|
|
public class ShiftDaySDto : BaseDto<ShiftDaySDto,ShiftDay>
|
|
|
|
|
|
{
|
|
|
|
|
|
public DayOfWeek DayOfWeek { get; set; }
|
|
|
|
|
|
public Guid ShiftId { get; set; }
|
|
|
|
|
|
}
|