collabbot/CollabBot/IConfig.cs

8 lines
178 B
C#
Raw Normal View History

2024-04-21 13:28:07 -04:00
namespace CollabBot;
public class IConfig
{
public string DiscordToken { get; set; }
public ulong ReportChannel { get; set; }
public ulong ReportRole { get; set; }
}