I have a JSON like this
"type" : "info",
"gameid" : "info",
"userid" : "info",
"actions" :
[
{
"actid" : "info",
"type" : "info",
"amount" : "info",
"timestamp" : "info"
},
],
"i_gamedesc" : "{SystemID}:{GameType}",
"hmac" : "..."
And correpsonding c# code to this json like this
[JsonProperty(PropertyName ="gameid")]
public int gameId { get; set; }
[JsonProperty(PropertyName = "userid")]
public int userId { get; set; }
The problem is that i do not know how to convert actions
JSON array filed like above code.Some help?