14 lines
405 B
C#
14 lines
405 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using xPushService.Interfaces;
|
|
using xWebinarService.Models.Dtos;
|
|
using xWebinarService.Models.Entities;
|
|
using xWebinarService.Providers.Dtos;
|
|
|
|
namespace xWebinarService.Interfaces.Dtos
|
|
{
|
|
public interface IXWebinarServiceProvider : IXBaseDtoProvider<XWebinar, XWebinarDto, Guid, XWebinarDtoHub>
|
|
{ }
|
|
} |