2024-07-06 21:20:10 +03:30
|
|
|
|
using Brizco.Domain.Entities.Shifts;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
2023-11-18 22:23:23 +03:30
|
|
|
|
|
|
|
|
|
|
public class ShiftRoutineSDto : BaseDto<ShiftRoutineSDto, ShiftRoutine>
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid RoutineId { get; set; }
|
|
|
|
|
|
public Guid ShiftId { get; set; }
|
|
|
|
|
|
}
|