Selector/Selector.Web/Services/EventMappings/IEventHubMapping.cs

16 lines
324 B
C#
Raw Normal View History

using System.Threading.Tasks;
using Microsoft.AspNetCore.SignalR;
using StackExchange.Redis;
namespace Selector.Web.Service
{
public interface IEventHubMapping<THub, T>
where THub : Hub<T>
where T : class
{
public Task ConstructMapping();
// public Task RemoveMapping();
}
}