2021-09-30 01:51:38 +00:00
|
|
|
using SqlKata;
|
|
|
|
|
2020-11-20 23:34:08 +00:00
|
|
|
namespace PluralKit.Core
|
|
|
|
{
|
2021-08-27 15:03:47 +00:00
|
|
|
public class AccountPatch: PatchObject
|
|
|
|
{
|
|
|
|
public Partial<bool> AllowAutoproxy { get; set; }
|
2020-11-20 23:34:08 +00:00
|
|
|
|
2021-09-30 01:51:38 +00:00
|
|
|
public override Query Apply(Query q) => q.ApplyPatch(wrapper => wrapper
|
|
|
|
.With("allow_autoproxy", AllowAutoproxy)
|
|
|
|
);
|
2021-08-27 15:03:47 +00:00
|
|
|
}
|
|
|
|
}
|