This relies on the Newtonsoft.Json
package. Once added as a package reference to your C# project, add the following class. This is an extension methods class, containing two convenience-centric extension methods:
using static Newtonsoft.Json.JsonConvert;
namespace IEvangelist.Extensions
{
public static class ObjectExtensions
{
public static T FromJson<T>(this string json)