2021-11-27 02:10:56 +00:00
|
|
|
namespace PluralKit.Core;
|
|
|
|
|
|
|
|
public class GuildConfig
|
2020-06-13 11:58:27 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
public ulong Id { get; }
|
|
|
|
public ulong? LogChannel { get; }
|
|
|
|
public ulong[] LogBlacklist { get; }
|
|
|
|
public ulong[] Blacklist { get; }
|
|
|
|
public bool LogCleanupEnabled { get; }
|
2020-06-13 11:58:27 +00:00
|
|
|
}
|