namespace VPLink.Common.Configuration; /// /// Represents the Virtual Paradise configuration. /// public interface IVirtualParadiseConfiguration { /// /// Gets or sets the display name of the bot. /// /// The display name. string BotName { get; set; } /// /// Gets or sets the chat configuration. /// /// The chat configuration. IChatConfiguration Chat { get; } /// /// Gets or sets the password with which to log in to Virtual Paradise. /// /// The login password. string Password { get; set; } /// /// Gets or sets the username with which to log in to Virtual Paradise. /// /// The login username. string Username { get; set; } /// /// Gets or sets the world into which the bot should enter. /// /// The world to enter. string World { get; set; } }