mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-10 19:16:46 +00:00
22 lines
680 B
C#
22 lines
680 B
C#
namespace CodexDiscordBotPlugin
|
|
{
|
|
public class DiscordBotStartupConfig
|
|
{
|
|
public DiscordBotStartupConfig(string name, string token, string serverName, string adminRoleName, string adminChannelName)
|
|
{
|
|
Name = name;
|
|
Token = token;
|
|
ServerName = serverName;
|
|
AdminRoleName = adminRoleName;
|
|
AdminChannelName = adminChannelName;
|
|
}
|
|
|
|
public string Name { get; }
|
|
public string Token { get; }
|
|
public string ServerName { get; }
|
|
public string AdminRoleName { get; }
|
|
public string AdminChannelName { get; }
|
|
public string? DataPath { get; set; }
|
|
}
|
|
}
|