Files
2026-05-16 01:13:57 +03:30

9 lines
189 B
C#

using System;
using xPushService.Interfaces;
using xServices.Models.Entities;
namespace xServices.Interfaces
{
public interface IXTestEntityHub : IXBaseEntityHub<XTest, Guid>
{ }
}