So I want to be able to get the fields of a class
public class Person
{
public string Id { get; set; }
public string Firstname { get; set; }
public string Lastname { get; set; }
}
So I will to be able to get the public field names from a class, in this case I want a list of strings being {"Id", "Firstname", "Lastname"}