예제 #1
0
파일: List.cs 프로젝트: bling/Ping.Pong
 public List(JsonValue json)
 {
     Id = json["id_str"];
     Name = json["name"];
     FullName = json["full_name"];
     CreatedAt = json.GetDateTime("created_at");
     Uri = json["uri"];
     Description = json["description"];
     Slug = json["slug"];
     User = new User(json["user"]);
 }
예제 #2
0
 public RateLimit(JsonValue json)
 {
     RemainingHits = json["remaining"];
     ResetTime = json.GetDateTime("reset");
     HourlyLimit = json["limit"];
 }