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
+26
View File
@@ -0,0 +1,26 @@
using xModels.Base;
using xModels.Dtos;
namespace xCategoryService.Models.Dtos
{
/// <summary>
/// Represent a Category by all of it's Resources ...
/// </summary>
public class XCategoryResourceDto : XBaseDto
{
/// <summary>
/// Category Dto Item for Add or Update ...
/// </summary>
public XCategoryDto Item { get; set; }
/// <summary>
/// Exists Category Titles ...
/// </summary>
public XResourceDto Titles { get; set; }
/// <summary>
/// Exists Category Description ...
/// </summary>
public XResourceDto Descriptions { get; set; }
}
}