2021-12-19 13:44:22 +00:00
|
|
|
using System;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
using Microsoft.AspNetCore.SignalR;
|
|
|
|
using StackExchange.Redis;
|
|
|
|
|
2021-12-19 18:44:03 +00:00
|
|
|
namespace Selector.Events
|
2021-12-19 13:44:22 +00:00
|
|
|
{
|
2021-12-19 18:44:03 +00:00
|
|
|
public interface IEventMapping
|
2021-12-19 13:44:22 +00:00
|
|
|
{
|
|
|
|
public Task ConstructMapping();
|
|
|
|
}
|
|
|
|
}
|