12 lines
350 B
C#
12 lines
350 B
C#
|
|
namespace Brizco.Domain.Dtos.LargeDtos;
|
|||
|
|
|
|||
|
|
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();
|
|||
|
|
}
|