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

7 lines
197 B
C#

namespace Brizco.Domain.Dtos.SmallDtos;
public class ShiftRoutineSDto : BaseDto<ShiftRoutineSDto, ShiftRoutine>
{
public Guid RoutineId { get; set; }
public Guid ShiftId { get; set; }
}