Files
xWebinarService/Interfaces/IXWebinarGroupStore.cs
T

11 lines
233 B
C#

using System;
using xDataService.Interfaces;
using xWebinarService.Models.Entities;
namespace xWebinarService.Interfaces
{
public interface IXWebinarGroupStore : IXBaseRepository<XWebinarGroupEntity, Guid>
{
}
}