This object represent a user's profile pictures.
 private void Parse(JObject jsonObject)
 {
     Ok = jsonObject["ok"].Value<bool>();
     Result = new UserProfilePhotosInfo(jsonObject["result"].Value<JObject>());
 }
Ejemplo n.º 2
0
 private void Parse(JObject jsonObject)
 {
     Ok     = jsonObject["ok"].Value <bool>();
     Result = new UserProfilePhotosInfo(jsonObject["result"].Value <JObject>());
 }