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