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

9 lines
235 B
C#

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