hermes-socket-library/Requests/IRequest.cs

9 lines
199 B
C#
Raw Normal View History

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