Anapher/Strive

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

Summary

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

namespace JsonPatchGenerator
{
    public interface IPatchContext
    {
        JsonPatchDocument Document { get; }

        JsonPatchOptions Options { get; }

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