using System; using System.Collections.Generic; namespace KonSoft.Admin.Dtos; public class ServiceCategoryDto { public Guid Id { get; set; } public string Name { get; set; } public Guid? ParentId { get; set; } public int Level { get; set; } public List Children { get; set; } = new(); }