using Brizco.Domain.Entities.Shift; namespace Brizco.Domain.Dtos.SmallDtos; public class ShiftPlanUserSDto : BaseDto { public Guid ShiftPlanId { get; set; } public Guid UserId { get; set; } public Guid PositionId { get; set; } }