PluralKit/PluralKit.Core/Models/Patch/SystemGuildPatch.cs

23 lines
734 B
C#
Raw Normal View History

2021-08-27 15:03:47 +00:00
#nullable enable
using SqlKata;
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; }
public override Query Apply(Query q) => q.ApplyPatch(wrapper => wrapper
.With("proxy_enabled", ProxyEnabled)
.With("autoproxy_mode", AutoproxyMode)
2021-08-02 21:22:06 +00:00
.With("autoproxy_member", AutoproxyMember)
.With("tag", Tag)
.With("tag_enabled", TagEnabled)
);
}
}