Advertisement
sorskoot

Colourlovers generated from json

Jul 1st, 2013
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.69 KB | None | 0 0
  1.     public class Pattern
  2.     {
  3.         public int id { get; set; }
  4.         public string title { get; set; }
  5.         public string userName { get; set; }
  6.         public int numViews { get; set; }
  7.         public int numVotes { get; set; }
  8.         public int numComments { get; set; }
  9.         public double numHearts { get; set; }
  10.         public int rank { get; set; }
  11.         public string dateCreated { get; set; }
  12.         public List<string> colors { get; set; }
  13.         public string description { get; set; }
  14.         public string url { get; set; }
  15.         public string imageUrl { get; set; }
  16.         public string badgeUrl { get; set; }
  17.         public string apiUrl { get; set; }
  18.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement