hermes-server/Requests/IRequest.cs
2024-12-28 17:24:02 +00:00

12 lines
272 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);
}
}