9 lines
188 B
C#
9 lines
188 B
C#
using PluralKit.Core;
|
|
|
|
namespace PluralKit.Core
|
|
{
|
|
public abstract class PatchObject<TKey, TObj>
|
|
{
|
|
public abstract UpdateQueryBuilder Apply(UpdateQueryBuilder b);
|
|
}
|
|
} |