9 lines
216 B
C#
9 lines
216 B
C#
using System;
|
|
using xPushService.Interfaces;
|
|
using xWebinarService.Models.Entities;
|
|
|
|
namespace xWebinarService.Interfaces.Entities
|
|
{
|
|
public interface IXWebinarEntityHub : IXBaseEntityHub<XWebinar, Guid>
|
|
{ }
|
|
} |