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

10 lines
278 B
C#
Raw Normal View History

using Brizco.Domain.Entities.Shift;
namespace Brizco.Domain.Dtos.SmallDtos;
public class ShiftPlanUserSDto : BaseDto<ShiftPlanUserSDto,ShiftPlanUser>
{
public Guid ShiftPlanId { get; set; }
2023-11-19 22:06:49 +03:30
public Guid UserId { get; set; }
public Guid PositionId { get; set; }
}