Anapher/Strive

View on GitHub
src/Libs/JsonPatchGenerator/IPatchTypeHandler.cs

Summary

Maintainability
A
0 mins
Test Coverage
using Newtonsoft.Json.Linq;

namespace JsonPatchGenerator
{
    public interface IPatchTypeHandler
    {
        bool CanPatch(JToken original, JToken modified);

        void CreatePatch(JToken original, JToken modified, JsonPatchPath path, IPatchContext context);
    }
}