9 lines
245 B
C#
9 lines
245 B
C#
using xCategoryService.Models.Dtos;
|
|
using xCategoryService.Models.Entities;
|
|
using xPushService.Interfaces;
|
|
|
|
namespace xCategoryService.Interfaces.Dtos
|
|
{
|
|
public interface IXCategoryDtoHub : IXBaseDtoHub<XCategory, XCategoryDto, int>
|
|
{ }
|
|
} |