2021-08-27 15:03:47 +00:00
|
|
|
#nullable enable
|
2021-09-30 01:51:38 +00:00
|
|
|
|
|
|
|
using SqlKata;
|
|
|
|
|
2020-06-29 13:20:28 +00:00
|
|
|
namespace PluralKit.Core
|
|
|
|
{
|
|
|
|
public class SystemGuildPatch: PatchObject
|
|
|
|
{
|
|
|
|
public Partial<bool> ProxyEnabled { get; set; }
|
|
|
|
public Partial<AutoproxyMode> AutoproxyMode { get; set; }
|
|
|
|
public Partial<MemberId?> AutoproxyMember { get; set; }
|
2021-08-02 21:22:06 +00:00
|
|
|
public Partial<string?> Tag { get; set; }
|
|
|
|
public Partial<bool?> TagEnabled { get; set; }
|
2020-06-29 13:20:28 +00:00
|
|
|
|
2021-09-30 01:51:38 +00:00
|
|
|
public override Query Apply(Query q) => q.ApplyPatch(wrapper => wrapper
|
2020-06-29 13:20:28 +00:00
|
|
|
.With("proxy_enabled", ProxyEnabled)
|
|
|
|
.With("autoproxy_mode", AutoproxyMode)
|
2021-08-02 21:22:06 +00:00
|
|
|
.With("autoproxy_member", AutoproxyMember)
|
|
|
|
.With("tag", Tag)
|
2021-09-30 01:51:38 +00:00
|
|
|
.With("tag_enabled", TagEnabled)
|
|
|
|
);
|
2020-06-29 13:20:28 +00:00
|
|
|
}
|
|
|
|
}
|