11 lines
278 B
C#
Raw Normal View History

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