9 lines
198 B
C#
9 lines
198 B
C#
|
namespace HermesSocketLibrary.Requests
|
||
|
{
|
||
|
public interface IRequest
|
||
|
{
|
||
|
string Name { get; }
|
||
|
|
||
|
Task<RequestResult> Grant(string sender, IDictionary<string, object> data);
|
||
|
}
|
||
|
}
|