PluralKit/PluralKit.Core/Models/Patch/AccountPatch.cs

10 lines
243 B
C#
Raw Normal View History

2020-11-20 23:34:08 +00:00
namespace PluralKit.Core
{
public class AccountPatch: PatchObject
{
public Partial<bool> AllowAutoproxy { get; set; }
public override UpdateQueryBuilder Apply(UpdateQueryBuilder b) => b
.With("allow_autoproxy", AllowAutoproxy);
}
}