2021-11-26 21:10:56 -05:00
|
|
|
namespace PluralKit.Core;
|
|
|
|
|
|
|
|
|
|
public class GuildConfig
|
2020-06-13 13:58:27 +02:00
|
|
|
{
|
2021-11-26 21:10:56 -05:00
|
|
|
public ulong Id { get; }
|
|
|
|
|
public ulong? LogChannel { get; }
|
|
|
|
|
public ulong[] LogBlacklist { get; }
|
2026-01-12 15:31:23 -07:00
|
|
|
public ulong[] ProxyBlacklist { get; }
|
2021-11-26 21:10:56 -05:00
|
|
|
public bool LogCleanupEnabled { get; }
|
2024-11-10 15:46:36 +13:00
|
|
|
public bool InvalidCommandResponseEnabled { get; }
|
|
|
|
|
public bool RequireSystemTag { get; }
|
2024-12-30 04:33:17 +00:00
|
|
|
public bool SuppressNotifications { get; }
|
2020-06-13 13:58:27 +02:00
|
|
|
}
|