PluralKit/PluralKit.Core/Models/GuildConfig.cs
2024-11-10 15:47:43 +13:00

12 lines
No EOL
341 B
C#

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