mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
10 lines
No EOL
244 B
C#
10 lines
No EOL
244 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; }
|
|
} |