AnsonBot/AnsonBot.Core/DiscordOptions.cs

15 lines
348 B
C#
Raw Permalink Normal View History

2026-07-30 19:47:39 +00:00
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; }
}