13 lines
225 B
C#
13 lines
225 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
using Microsoft.AspNetCore.SignalR;
|
|
using StackExchange.Redis;
|
|
|
|
namespace Selector.Events
|
|
{
|
|
public interface IEventMapping
|
|
{
|
|
public Task ConstructMapping();
|
|
}
|
|
} |