hermes-server/Requests/IRequest.cs

12 lines
273 B
C#

using HermesSocketServer.Models;
namespace HermesSocketServer.Requests
{
public interface IRequest
{
string Name { get; }
string[] RequiredKeys { get; }
Task<RequestResult> Grant(Channel channel, IDictionary<string, object>? data);
}
}