ElfenSky

tinyProject_Serie

Aug 19th, 2019
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.84 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. //custom
  5. using Newtonsoft.Json; //used for json
  6. using System.Threading.Tasks; //used for async
  7. using System.Net.Http; //used to make http requests
  8. using System.Diagnostics; //used for Debug.WriteLine("xamarin:::   " + "string");
  9.  
  10. namespace tinyapp.Model
  11. {
  12.     public class Serie
  13.     {
  14.         public List<Info> data { get; set; }
  15.     }
  16.  
  17.     public class Info
  18.     {
  19.         public List<object> aliases { get; set; }
  20.         public string banner { get; set; }
  21.         public string firstAired { get; set; }
  22.         public int id { get; set; }
  23.         public string network { get; set; }
  24.         public string overview { get; set; }
  25.         public string seriesName { get; set; }
  26.         public string slug { get; set; }
  27.         public string status { get; set; }
  28.     }
  29. }
Add Comment
Please, Sign In to add comment