namespace VPLink.Common.Configuration;
///
/// Represents the bot configuration.
///
public interface IBotConfiguration
{
///
/// Gets a value indicating whether the bot should announce avatar events.
///
///
/// if the bot should announce avatar events; otherwise, .
///
bool AnnounceAvatarEvents { get; }
///
/// Gets a value indicating whether the bot should announce avatar events for bots.
///
///
/// if the bot should announce avatar events for bots; otherwise,
/// .
///
bool AnnounceBots { get; }
///
/// Gets a value indicating whether the bot should relay messages from other bots.
///
///
/// if the bot should relay messages from other bots; otherwise,
/// .
///
bool RelayBotMessages { get; }
}