mcdiscordbot/MinecraftDiscordBot/BotConfiguration.cs

15 lines
532 B
C#
Raw Normal View History

2022-01-10 16:10:32 +01:00
using Newtonsoft.Json;
namespace MinecraftDiscordBot;
public class BotConfiguration {
[JsonProperty("token", Required = Required.Always)]
public string Token { get; set; } = default!;
[JsonProperty("port", Required = Required.Always)]
public int Port { get; set; } = default!;
[JsonProperty("channels", Required = Required.Always)]
public IEnumerable<ulong> Channels { get; set; } = default!;
[JsonProperty("prefix", Required = Required.Always)]
public string Prefix { get; set; } = default!;
2022-01-10 16:10:32 +01:00
}