mirror of
https://github.com/oliverbooth/VPLink
synced 2024-11-10 02:35:42 +00:00
28 lines
770 B
C#
28 lines
770 B
C#
using VPLink.Common.Configuration;
|
|
|
|
namespace VPLink.Common.Services;
|
|
|
|
/// <summary>
|
|
/// Represents the configuration service.
|
|
/// </summary>
|
|
public interface IConfigurationService
|
|
{
|
|
/// <summary>
|
|
/// Gets the bot configuration.
|
|
/// </summary>
|
|
/// <value>The bot configuration.</value>
|
|
IBotConfiguration BotConfiguration { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the Discord configuration.
|
|
/// </summary>
|
|
/// <value>The Discord configuration.</value>
|
|
IDiscordConfiguration DiscordConfiguration { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the Virtual Paradise configuration.
|
|
/// </summary>
|
|
/// <value>The Virtual Paradise configuration.</value>
|
|
IVirtualParadiseConfiguration VirtualParadiseConfiguration { get; }
|
|
}
|