File: IJsonPatchDocument.cs | Web Access |
Project: src\src\Features\JsonPatch\src\Microsoft.AspNetCore.JsonPatch.csproj (Microsoft.AspNetCore.JsonPatch) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.Generic; using Microsoft.AspNetCore.JsonPatch.Operations; using Newtonsoft.Json.Serialization; namespace Microsoft.AspNetCore.JsonPatch; public interface IJsonPatchDocument { IContractResolver ContractResolver { get; set; } IList<Operation> GetOperations(); } |