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

7 lines
197 B
C#
Raw Normal View History

2024-08-11 19:20:09 +03:30
namespace Brizco.Domain.Dtos.SmallDtos;
public class ShiftRoutineSDto : BaseDto<ShiftRoutineSDto, ShiftRoutine>
{
public Guid RoutineId { get; set; }
public Guid ShiftId { get; set; }
}