last works on Category and SubCategory Completion ...

This commit is contained in:
2026-07-08 02:47:15 +03:30
parent fdd76137e0
commit 234f39876b
5 changed files with 37 additions and 7 deletions
-16
View File
@@ -1,16 +0,0 @@
using xCategoryService.Models.Dtos;
using xModels.Base;
using xModels.Dtos;
namespace xCategoryService.Providers.Dtos
{
/// <summary>
/// Represent a Category by all of it's Resources ...
/// </summary>
public class XCategoryResourceDto : XBaseDto
{
public XCategoryDto Item { get; set; }
public XResourceDto Titles { get; set; }
public XResourceDto Descriptions { get; set; }
}
}
-30
View File
@@ -1,30 +0,0 @@
using xCategoryService.Models.Dtos;
using xModels.Base;
using xModels.Dtos;
namespace xCategoryService.Providers.Dtos
{
public class XSubCategoryResourceDto : XBaseDto
{
/// <summary>
/// SubCategory Dto Item for Add or Update ...
/// </summary>
public XSubCategoryDto Item { get; set; }
/// <summary>
/// Exists SubCategory Titles ...
/// </summary>
public XResourceDto Titles { get; set; }
/// <summary>
/// Exists SubCategory Description ...
/// </summary>
public XResourceDto Descriptions { get; set; }
/// <summary>
/// Exists Category Resource Dto for Add or Update Category or
/// Related Categopry ...
/// </summary>
public XCategoryResourceDto Category { get; set; }
}
}