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

14 lines
391 B
C#
Raw Normal View History

2024-07-06 21:20:10 +03:30
using Brizco.Domain.Entities.Complexes;
namespace Brizco.Domain.Dtos.LargeDtos;
2023-11-14 16:21:49 +03:30
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();
}