The endpoint I'm requesting from:
If you look at the JSON inside the Pages Object there's another Object which is the id of the wikipedia article. And in my project, I won't be only parsing Eminem's page but other singers/artists. So my question is how can I go and parse this ever changing json object name?
My json as c# classes
public class ArticleRootobject {
public string batchcomplete { get; set; }
public Query query { get; set; }
}
public class Query {
public Normalized[] normalized { get; set; }
public Pages pages { get; set; }
}
public class Pages {
public _4429395 _4429395 { get; set; }
}
public class Normalized{
public string from { get; set; }
public string to { get; set; }
}
Thanks for the help