10 lines
244 B
C#
Raw Normal View History

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