14 lines
348 B
C#
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; }
|
|
}
|