Exemplo n.º 1
0
 public User(JsonValue json)
 {
     Id = json["id_str"];
     Name = json["name"];
     ScreenName = json["screen_name"];
     ProfileImageUrl = json["profile_image_url"];
     Location = json["location"];
     Url = json["url"];
     Description = json["description"];
     Friends = json["friends_count"];
     Followers = json["followers_count"];
     Statuses = json["statuses_count"];
     IsFollowing = json.GetBool("following");
 }