16 lines
429 B
C#
16 lines
429 B
C#
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; }
|
|
}
|
|
} |