namespace NetinaShop.Domain.Dtos.LargDtos; public class CategoryLDto : BaseDto { public string Name { get; set; } = string.Empty; public string Description { get; set; } = string.Empty; public Guid ParentId { get; set; } public List Children { get; set; } = new(); public List Files { get; internal set; } = new(); }