Api/Brizco.Domain/Dtos/LargDtos/SectionLDto.cs

12 lines
349 B
C#

namespace Brizco.Domain.Dtos.LargDtos;
public class SectionLDto : BaseDto<SectionLDto, Section>
{
public string Name { get; internal set; } = string.Empty;
public string Description { get; internal set; } = string.Empty;
public Guid ComplexId { get; set; }
public List<PositionSDto> Positions { get; internal set; } = new();
}