discord/Discord/Managers/Manager.cs
2024-06-09 18:51:48 +12:00

14 lines
299 B
C#

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