Fix and Complete XCategory and XSubCategory Services and Service Implementations ...
13 lines
340 B
C#
13 lines
340 B
C#
using xCategoryService.Models.Dtos;
|
|
using xModels.Base;
|
|
using xModels.Dtos;
|
|
|
|
namespace xCategoryService.Providers.Dtos
|
|
{
|
|
public class XSubCategoryResourceDto : XBaseDto
|
|
{
|
|
public XSubCategoryDto Item { get; set; }
|
|
public XResourceDto Titles { get; set; }
|
|
public XResourceDto Descriptions { get; set; }
|
|
}
|
|
} |