mirror of
https://github.com/oliverbooth/VPLink
synced 2024-11-13 01:45:42 +00:00
17 lines
389 B
C#
17 lines
389 B
C#
using VPLink.Common.Configuration;
|
|
|
|
namespace VPLink.Configuration;
|
|
|
|
/// <inheritdoc />
|
|
internal sealed class BotConfiguration : IBotConfiguration
|
|
{
|
|
/// <inheritdoc />
|
|
public bool AnnounceAvatarEvents { get; set; } = true;
|
|
|
|
/// <inheritdoc />
|
|
public bool AnnounceBots { get; set; } = false;
|
|
|
|
/// <inheritdoc />
|
|
public bool RelayBotMessages { get; set; } = false;
|
|
}
|