10 lines
237 B
C#
10 lines
237 B
C#
|
namespace HermesSocketServer.Requests
|
||
|
{
|
||
|
public interface IRequest
|
||
|
{
|
||
|
string Name { get; }
|
||
|
string[] RequiredKeys { get; }
|
||
|
|
||
|
Task<RequestResult> Grant(string sender, IDictionary<string, object>? data);
|
||
|
}
|
||
|
}
|