PluralKit/PluralKit.Core/Models/GuildConfig.cs
2021-08-27 11:03:47 -04:00

11 lines
278 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; }
}
}