PluralKit/PluralKit.Core/Models/GuildConfig.cs

14 lines
438 B
C#
Raw Normal View History

namespace PluralKit.Core;
public class GuildConfig
2020-06-13 13:58:27 +02:00
{
public ulong Id { get; }
public ulong? LogChannel { get; }
public ulong[] LogBlacklist { get; }
public ulong[] ProxyBlacklist { get; }
2026-01-12 17:14:12 -07:00
public ulong[] CommandBlacklist { get; }
public bool LogCleanupEnabled { get; }
public bool InvalidCommandResponseEnabled { get; }
public bool RequireSystemTag { get; }
public bool SuppressNotifications { get; }
2020-06-13 13:58:27 +02:00
}