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

9 lines
235 B
C#
Raw Normal View History

2024-07-06 21:20:10 +03:30
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; }
}