7 lines
197 B
C#
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; }
|
|||
|
|
}
|