mcdiscordbot/MinecraftDiscordBot/BotConfiguration.cs

13 lines
424 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!;
}