mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
10 lines
243 B
C#
10 lines
243 B
C#
|
|
namespace PluralKit.Core
|
||
|
|
{
|
||
|
|
public class AccountPatch: PatchObject
|
||
|
|
{
|
||
|
|
public Partial<bool> AllowAutoproxy { get; set; }
|
||
|
|
|
||
|
|
public override UpdateQueryBuilder Apply(UpdateQueryBuilder b) => b
|
||
|
|
.With("allow_autoproxy", AllowAutoproxy);
|
||
|
|
}
|
||
|
|
}
|