namespace HermesSocketServer.Requests { public interface IRequest { string Name { get; } string[] RequiredKeys { get; } Task Grant(string sender, IDictionary? data); } }