15 lines
426 B
C#
15 lines
426 B
C#
|
|
namespace Brizco.Domain.Dtos.LargDtos;
|
|||
|
|
|
|||
|
|
public class PositionLDto : BaseDto<PositionLDto, Position>
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public string Name { get; set; } = string.Empty;
|
|||
|
|
public string Description { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
public Guid ComplexId { get; set; }
|
|||
|
|
|
|||
|
|
public Guid SectionId { get; set; }
|
|||
|
|
public string SectionName { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
public List<PositionUserSDto> Users { get; set; } = new();
|
|||
|
|
}
|