Refactor member updates to use a patch object

This commit is contained in:
Ske
2020-06-29 13:57:48 +02:00
parent 472e556ef0
commit 281b669391
10 changed files with 289 additions and 84 deletions

View File

@@ -0,0 +1,9 @@
using PluralKit.Core;
namespace PluralKit.Core
{
public abstract class PatchObject<TKey, TObj>
{
public abstract UpdateQueryBuilder Apply(UpdateQueryBuilder b);
}
}