AnsonBot/AnsonBot.Core/DiscordOptions.cs
2026-07-30 20:47:39 +01:00

14 lines
348 B
C#

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; }
/// <summary>Channel for join/leave notifications. 0 disables them.</summary>
public ulong NotificationChannelId { get; set; }
}