using System; using System.Collections.Generic; using System.Threading.Tasks; using KonSoft.Admin.Dtos; namespace KonSoft.Admin.IApplicationServices; public interface IServiceCategoryAppService { Task CreateAsync(CreateServiceCategoryDto input); Task DeleteAsync(Guid id); Task> GetTreeAsync(); }