У меня возникла проблема, как получить пустой список, определить свойства и установить значения в методе stati c.
К вашему сведению: я также использую те же свойства id и parentID в другой полезной нагрузке, которая не является списком ..
//Here is the json I have
[
{
"id": 1,
"parentId": 4
}
]
//Here is my model class, my static method "Payload" and the properties of Json
public class Model
{
public int id { get; set; }
public int parentId { get; set; }
public static Model Payload()
{
return new Model
{
//How to get define the List here and set the values
}
}
}