2024-06-24 18:31:45 -04:00
|
|
|
namespace HermesSocketLibrary.Requests
|
|
|
|
{
|
|
|
|
public interface IRequest
|
|
|
|
{
|
|
|
|
string Name { get; }
|
|
|
|
|
2024-08-10 15:33:33 -04:00
|
|
|
Task<RequestResult> Grant(string sender, IDictionary<string, object>? data);
|
2024-06-24 18:31:45 -04:00
|
|
|
}
|
|
|
|
}
|