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

8 lines
214 B
C#

using xCategoryService.Models.Entities;
using xDataService.Interfaces;
namespace xCategoryService.Interfaces.Entities
{
public interface IXCategoryRepositoryEvents : IXBaseRepositoryEvents<XCategory>
{ }
}