2021-08-27 15:03:47 +00:00
|
|
|
namespace PluralKit.Core
|
2020-06-29 13:20:28 +00:00
|
|
|
{
|
|
|
|
public class GuildPatch: PatchObject
|
|
|
|
{
|
|
|
|
public Partial<ulong?> LogChannel { get; set; }
|
|
|
|
public Partial<ulong[]> LogBlacklist { get; set; }
|
|
|
|
public Partial<ulong[]> Blacklist { get; set; }
|
|
|
|
public Partial<bool> LogCleanupEnabled { get; set; }
|
|
|
|
|
|
|
|
public override UpdateQueryBuilder Apply(UpdateQueryBuilder b) => b
|
|
|
|
.With("log_channel", LogChannel)
|
|
|
|
.With("log_blacklist", LogBlacklist)
|
|
|
|
.With("blacklist", Blacklist)
|
|
|
|
.With("log_cleanup_enabled", LogCleanupEnabled);
|
|
|
|
}
|
|
|
|
}
|