namespace VPLink.Common.Configuration; /// /// Represents the Discord configuration. /// public interface IDiscordConfiguration { /// /// Gets the channel ID to which the bot should relay messages. /// /// The channel ID. ulong ChannelId { get; } /// /// Gets the Discord token. /// /// The Discord token. string Token { get; } }