29 lines
793 B
C#
29 lines
793 B
C#
using xModels.Base;
|
|
using xModels.Dtos;
|
|
|
|
namespace xCategoryService.Models.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; }
|
|
}
|
|
} |