2024-05-27 00:35:53 +03:30
|
|
|
|
namespace Brizco.Domain.Dtos.LargeDtos;
|
2023-11-14 16:21:49 +03:30
|
|
|
|
|
|
|
|
|
|
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;
|
2024-06-02 11:26:18 +03:30
|
|
|
|
public List<string> Permissions { get; set; } = new();
|
2023-11-14 16:21:49 +03:30
|
|
|
|
}
|