Skip to content

Instantly share code, notes, and snippets.

Created May 21, 2015 09:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/72636aa44fb13b005704 to your computer and use it in GitHub Desktop.
Save anonymous/72636aa44fb13b005704 to your computer and use it in GitHub Desktop.
public class Pixiv
{
public class Pagination
{
public int current { get; set; }
public object next { get; set; }
public int pages { get; set; }
public int per_page { get; set; }
public object previous { get; set; }
public int total { get; set; }
}
public class ImageUrls
{
public string large { get; set; }
public string px_128x128 { get; set; }
public string px_480mw { get; set; }
public string medium { get; set; }
public string small { get; set; }
}
public class FavoritedCount
{
public int @private { get; set; }
public int @public { get; set; }
}
public class Stats
{
public int commented_count { get; set; }
public FavoritedCount favorited_count { get; set; }
public int score { get; set; }
public int scored_count { get; set; }
public int views_count { get; set; }
}
public class ProfileImageUrls
{
public string px_50x50 { get; set; }
}
public class User
{
public string account { get; set; }
public int id { get; set; }
public bool is_follower { get; set; }
public bool is_following { get; set; }
public bool is_friend { get; set; }
public object is_premium { get; set; }
public string name { get; set; }
public object profile { get; set; }
public ProfileImageUrls profile_image_urls { get; set; }
public object stats { get; set; }
}
public class Response
{
public string age_limit { get; set; }
public string book_style { get; set; }
public string caption { get; set; }
public object content_type { get; set; }
public string created_time { get; set; }
public int favorite_id { get; set; }
public int height { get; set; }
public int id { get; set; }
public ImageUrls image_urls { get; set; }
public bool is_liked { get; set; }
public bool is_manga { get; set; }
public object metadata { get; set; }
public int page_count { get; set; }
public int publicity { get; set; }
public string reuploaded_time { get; set; }
public Stats stats { get; set; }
public List<string> tags { get; set; }
public string title { get; set; }
public List<string> tools { get; set; }
public string type { get; set; }
public User user { get; set; }
public int width { get; set; }
}
public int count { get; set; }
public Pagination pagination { get; set; }
public List<Response> response { get; set; }
public string status { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment