hermes-socket-library/Requests/IRequest.cs
2024-06-24 22:31:45 +00:00

9 lines
198 B
C#

namespace HermesSocketLibrary.Requests
{
public interface IRequest
{
string Name { get; }
Task<RequestResult> Grant(string sender, IDictionary<string, object> data);
}
}