onebeyond/onebeyond-studio-core

View on GitHub
src/OneBeyond.Studio.Hosting.AspNet/ModelBinders/MixedSource/Converters/IRequestToJObjectConverter.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc.ModelBinding;
using Newtonsoft.Json.Linq;

namespace OneBeyond.Studio.Hosting.AspNet.ModelBinders.MixedSource.Converters;

internal interface IRequestToJTokenConverter
{
    ValueTask<JToken> ConvertAsync(ModelBindingContext bindingContext);
}