2024-07-08 17:45:17 +03:30
|
|
|
|
using Brizco.Domain.Entities.ShiftPlans;
|
2024-07-06 21:20:10 +03:30
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
2023-09-18 15:41:41 +03:30
|
|
|
|
|
|
|
|
|
|
public class ShiftPlanUserSDto : BaseDto<ShiftPlanUserSDto,ShiftPlanUser>
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid ShiftPlanId { get; set; }
|
2023-11-19 22:06:49 +03:30
|
|
|
|
public Guid UserId { get; set; }
|
2024-03-06 23:22:53 +03:30
|
|
|
|
public string UserFullName { get; set; } = string.Empty;
|
2023-11-19 22:06:49 +03:30
|
|
|
|
public Guid PositionId { get; set; }
|
2024-03-06 23:22:53 +03:30
|
|
|
|
public string PositionName { get; set; } = string.Empty;
|
2023-09-18 15:41:41 +03:30
|
|
|
|
}
|