PluralKit/PluralKit.Core/Models/GuildConfig.cs

13 lines
No EOL
393 B
C#

namespace PluralKit.Core;
public class GuildConfig
{
public ulong Id { get; }
public ulong? LogChannel { get; }
public ulong[] LogBlacklist { get; }
public ulong[] ProxyBlacklist { get; }
public bool LogCleanupEnabled { get; }
public bool InvalidCommandResponseEnabled { get; }
public bool RequireSystemTag { get; }
public bool SuppressNotifications { get; }
}