Advertisement
Guest User

Untitled

a guest
Jan 9th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.24 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace JuicyReddit
  8. {
  9.     class Comments
  10.     {
  11.         public class MediaEmbed
  12.         {
  13.         }
  14.  
  15.         public class SecureMediaEmbed
  16.         {
  17.         }
  18.  
  19.         public class Data2
  20.         {
  21.             public string domain { get; set; }
  22.             public object banned_by { get; set; }
  23.             public MediaEmbed media_embed { get; set; }
  24.             public string subreddit { get; set; }
  25.             public object selftext_html { get; set; }
  26.             public string selftext { get; set; }
  27.             public object likes { get; set; }
  28.             public object secure_media { get; set; }
  29.             public object link_flair_text { get; set; }
  30.             public string id { get; set; }
  31.             public SecureMediaEmbed secure_media_embed { get; set; }
  32.             public bool clicked { get; set; }
  33.             public bool stickied { get; set; }
  34.             public string author { get; set; }
  35.             public object media { get; set; }
  36.             public int score { get; set; }
  37.             public object approved_by { get; set; }
  38.             public bool over_18 { get; set; }
  39.             public bool hidden { get; set; }
  40.             public string thumbnail { get; set; }
  41.             public string subreddit_id { get; set; }
  42.             public object edited { get; set; }
  43.             public object link_flair_css_class { get; set; }
  44.             public object author_flair_css_class { get; set; }
  45.             public int downs { get; set; }
  46.             public bool saved { get; set; }
  47.             public bool is_self { get; set; }
  48.             public string permalink { get; set; }
  49.             public string name { get; set; }
  50.             public double created { get; set; }
  51.             public string url { get; set; }
  52.             public object author_flair_text { get; set; }
  53.             public string title { get; set; }
  54.             public double created_utc { get; set; }
  55.             public int ups { get; set; }
  56.             public int num_comments { get; set; }
  57.             public bool visited { get; set; }
  58.             public object num_reports { get; set; }
  59.             public object distinguished { get; set; }
  60.             public object replies { get; set; }
  61.             public int? gilded { get; set; }
  62.             public string parent_id { get; set; }
  63.             public string body { get; set; }
  64.             public string body_html { get; set; }
  65.             public string link_id { get; set; }
  66.             public bool? score_hidden { get; set; }
  67.             public int? count { get; set; }
  68.             public List<string> children { get; set; }
  69.         }
  70.  
  71.         public class Child
  72.         {
  73.             public string kind { get; set; }
  74.             public Data2 data { get; set; }
  75.         }
  76.  
  77.         public class Data
  78.         {
  79.             public string modhash { get; set; }
  80.             public List<Child> children { get; set; }
  81.             public object after { get; set; }
  82.             public object before { get; set; }
  83.         }
  84.  
  85.         public class RootObject
  86.         {
  87.             public string kind { get; set; }
  88.             public Data data { get; set; }
  89.         }
  90.     }
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement