This commit is contained in:
2026-06-06 00:21:48 +03:30
parent eb9437fe06
commit c0618a5b25
3 changed files with 142 additions and 37 deletions
+16
View File
@@ -0,0 +1,16 @@
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; }
}
}