11 lines
233 B
C#
11 lines
233 B
C#
using System;
|
|
using xDataService.Interfaces;
|
|
using xWebinarService.Models.Entities;
|
|
|
|
namespace xWebinarService.Interfaces
|
|
{
|
|
public interface IXWebinarGroupStore : IXBaseRepository<XWebinarGroupEntity, Guid>
|
|
{
|
|
|
|
}
|
|
} |