Api/Brizco.Domain/Dtos/SmallDtos/SectionSDto.cs

10 lines
278 B
C#
Raw Permalink Normal View History

2024-08-11 19:20:09 +03:30
namespace Brizco.Domain.Dtos.SmallDtos;
2023-11-14 16:21:49 +03:30
public class SectionSDto : BaseDto<SectionSDto, Section>
{
public string Name { get; internal set; } = string.Empty;
public string Description { get; internal set; } = string.Empty;
public Guid ComplexId { get; set; }
}