mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-06 05:47:53 +00:00
11 lines
279 B
C#
11 lines
279 B
C#
|
|
namespace PluralKit.Core
|
|||
|
|
{
|
|||
|
|
public class GuildConfig
|
|||
|
|
{
|
|||
|
|
public int Id { get; }
|
|||
|
|
public ulong? LogChannel { get; }
|
|||
|
|
public ulong[] LogBlacklist { get; }
|
|||
|
|
public ulong[] Blacklist { get; }
|
|||
|
|
public bool LogCleanupEnabled { get; }
|
|||
|
|
}
|
|||
|
|
}
|