Below is an example of the original JSON to C# and the result.
Original JSON to C# Example{ "header": "rum.table.column.txnname", "width": "40%", "dataElement": "yttags", "isPresent": true, "day": 50, "results": { "totalCT": 397, "name": "/api/yttags_monitor/*", "avgRT": 407.35, "throughput": 6.90, "totalRT": 123098 } }
And an example of how the online JSON to C# works.
JSON to C# Resultpublic class Results { public int totalCT { get; set; } public string name { get; set; } public double avgRT { get; set; } public double throughput { get; set; } public int totalRT { get; set; } } public class Application { public string header { get; set; } public string width { get; set; } public string dataElement { get; set; } public bool isPresent { get; set; } public int day { get; set; } public Results results { get; set; } }