8 lines
178 B
C#
8 lines
178 B
C#
|
namespace CollabBot;
|
||
|
|
||
|
public class IConfig
|
||
|
{
|
||
|
public string DiscordToken { get; set; }
|
||
|
public ulong ReportChannel { get; set; }
|
||
|
public ulong ReportRole { get; set; }
|
||
|
}
|