Files
xCategoryService/Interfaces/Entities/IXCategoryEntityHub.cs
T
2026-06-01 01:04:55 +03:30

8 lines
205 B
C#

using xCategoryService.Models.Entities;
using xPushService.Interfaces;
namespace xCategoryService.Interfaces.Entities
{
public interface IXCategoryEntityHub : IXBaseEntityHub<XCategory, int>
{ }
}