Files
xCategoryService/Providers/Dtos/XSubCategoryResourceDto.cs
T
2026-07-01 17:38:29 +03:30

30 lines
832 B
C#

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; }
}
}