Discord.Net/docs/guides/dependency_injection/samples/property-injecting.cs

10 lines
149 B
C#
Raw Permalink Normal View History

2024-06-12 22:43:59 -07:00
public class ClientHandler
{
public DiscordSocketClient Client { get; set; }
public async Task ConfigureAsync()
{
//...
}
}