mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
14 lines
No EOL
438 B
C#
14 lines
No EOL
438 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 ulong[] CommandBlacklist { get; }
|
|
public bool LogCleanupEnabled { get; }
|
|
public bool InvalidCommandResponseEnabled { get; }
|
|
public bool RequireSystemTag { get; }
|
|
public bool SuppressNotifications { get; }
|
|
} |