This commit is contained in:
2026-06-01 22:51:37 +03:30
parent ee967371c9
commit ad152fdf7f
10 changed files with 258 additions and 0 deletions
@@ -0,0 +1,10 @@
using xCategoryService.Models.Dtos;
using xCategoryService.Models.Entities;
using xCategoryService.Providers.Dtos;
using xPushService.Interfaces;
namespace xCategoryService.Interfaces
{
public interface IXSubCategoryProviderController: IXBaseProvidedController<XSubCategory, XSubCategoryDto, int, XSubCategoryDtoHub>
{ }
}