Update Lang Version to 12 ...

Fix and Complete XCategory and XSubCategory Services and Service Implementations ...
This commit is contained in:
2026-06-12 02:18:44 +03:30
parent 45e6bf1362
commit f1dbbc8f1d
6 changed files with 1649 additions and 25 deletions
+13
View File
@@ -0,0 +1,13 @@
using xCategoryService.Models.Dtos;
using xModels.Base;
using xModels.Dtos;
namespace xCategoryService.Providers.Dtos
{
public class XSubCategoryResourceDto : XBaseDto
{
public XSubCategoryDto Item { get; set; }
public XResourceDto Titles { get; set; }
public XResourceDto Descriptions { get; set; }
}
}