9 lines
189 B
C#
9 lines
189 B
C#
using System;
|
|
using xPushService.Interfaces;
|
|
using xServices.Models.Entities;
|
|
|
|
namespace xServices.Interfaces
|
|
{
|
|
public interface IXTestEntityHub : IXBaseEntityHub<XTest, Guid>
|
|
{ }
|
|
} |