How would I need to configure AutoMapper to be able to convert a DataTable containing columns "C" and "D" to a list of MyClass by using the JsonProperty attribute for mapping?
public class MyClass
{
[JsonProperty("C")]
public string A { get; set; }
[JsonProperty("D")]
public string B { get; set; }
}