Discord.Net/docs/guides/dependency_injection/samples/services.cs
2024-06-13 17:43:59 +12:00

9 lines
127 B
C#

public class MyService
{
public List<string> Things { get; }
public MyService()
{
Things = new();
}
}