Advertisement
JAcob_007

Space

Feb 10th, 2017
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.62 KB | None | 0 0
  1. using System.Collections.Generic;
  2.  
  3. namespace ParseJsonData.Models
  4. {
  5.     public class Space
  6.     {
  7.        
  8.     }
  9.     public class Metadata
  10.     {
  11.         public string id { get; set; }
  12.         public string key { get; set; }
  13.         public string value { get; set; }
  14.     }
  15.  
  16.     public class Post
  17.     {
  18.         public int ID { get; set; }
  19.         public int site_ID { get; set; }
  20.         public string date { get; set; }
  21.         public string title { get; set; }
  22.         public List<Metadata> metadata { get; set; }
  23.     }
  24.  
  25.     public class RootObject
  26.     {
  27.         public List<Post> posts { get; set; }
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement