2020-11-20 18:34:08 -05:00
|
|
|
namespace PluralKit.Core
|
|
|
|
{
|
2021-08-27 11:03:47 -04:00
|
|
|
public class AccountPatch: PatchObject
|
|
|
|
{
|
|
|
|
public Partial<bool> AllowAutoproxy { get; set; }
|
2020-11-20 18:34:08 -05:00
|
|
|
|
2021-08-27 11:03:47 -04:00
|
|
|
public override UpdateQueryBuilder Apply(UpdateQueryBuilder b) => b
|
|
|
|
.With("allow_autoproxy", AllowAutoproxy);
|
|
|
|
}
|
|
|
|
}
|