using System; using System.Collections.Generic; using System.Text; namespace AnsonBot.Core; public class DiscordOptions { public string Token { get; set; } = ""; public ulong GuildId { get; set; } /// Channel for join/leave notifications. 0 disables them. public ulong NotificationChannelId { get; set; } }