2024-12-27 23:31:36 +00:00
|
|
|
using HermesSocketServer.Models;
|
|
|
|
|
2024-10-20 20:39:13 +00:00
|
|
|
namespace HermesSocketServer.Requests
|
|
|
|
{
|
|
|
|
public interface IRequest
|
|
|
|
{
|
|
|
|
string Name { get; }
|
|
|
|
string[] RequiredKeys { get; }
|
|
|
|
|
2024-12-27 23:31:36 +00:00
|
|
|
Task<RequestResult> Grant(Channel channel, IDictionary<string, object>? data);
|
2024-10-20 20:39:13 +00:00
|
|
|
}
|
|
|
|
}
|