Newtonsoft.Json Custom Serialization for property values to become json field names
I have the following simple class structure: public class FaactRecordDifferences { public string Id { get; set; } public int Year { get; set; } public List<FieldDifference> Fields { get; set; } } public class FieldDifference { public string FieldName…