I have a below Object
public class ResTemplate
{
public string country { get; set; }
public int jobCode { get; set; }
public Attributes attributes { get; set; }
}
public class Attributes
{
public string state { get; set; }
public string region { get; set; }
}
now i want to convert this to data table without using property name to read the values
output expected
country jobcode state region
US 001 IL Chicago