mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
13 lines
No EOL
302 B
C#
13 lines
No EOL
302 B
C#
using SqlKata;
|
|
|
|
namespace PluralKit.Core
|
|
{
|
|
public class AccountPatch: PatchObject
|
|
{
|
|
public Partial<bool> AllowAutoproxy { get; set; }
|
|
|
|
public override Query Apply(Query q) => q.ApplyPatch(wrapper => wrapper
|
|
.With("allow_autoproxy", AllowAutoproxy)
|
|
);
|
|
}
|
|
} |