10 lines
363 B
C#
10 lines
363 B
C#
namespace Brizco.Domain.Dtos.SmallDtos;
|
|
|
|
public class ShiftPlanUserSDto : BaseDto<ShiftPlanUserSDto,ShiftPlanUser>
|
|
{
|
|
public Guid ShiftPlanId { get; set; }
|
|
public Guid UserId { get; set; }
|
|
public string UserFullName { get; set; } = string.Empty;
|
|
public Guid PositionId { get; set; }
|
|
public string PositionName { get; set; } = string.Empty;
|
|
} |