namespace Discord.Managers { public class Manager where K : IEquatable { public Dictionary Cache; public Client Client; public Manager(Client client) { this.Client = client; Cache = new Dictionary(); } } }