using SqlKata; namespace PluralKit.Core { public class AccountPatch: PatchObject { public Partial AllowAutoproxy { get; set; } public override Query Apply(Query q) => q.ApplyPatch(wrapper => wrapper .With("allow_autoproxy", AllowAutoproxy) ); } }