mirror of
https://github.com/oliverbooth/VPLink
synced 2024-11-10 03:15:41 +00:00
20 lines
477 B
C#
20 lines
477 B
C#
|
namespace VPLink.Common.Configuration;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Represents the Discord configuration.
|
||
|
/// </summary>
|
||
|
public interface IDiscordConfiguration
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets the channel ID to which the bot should relay messages.
|
||
|
/// </summary>
|
||
|
/// <value>The channel ID.</value>
|
||
|
ulong ChannelId { get; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets the Discord token.
|
||
|
/// </summary>
|
||
|
/// <value>The Discord token.</value>
|
||
|
string Token { get; }
|
||
|
}
|