/animeplugin3/MyAnimePlugin3/Downloads/TorrentList.cs

https://bitbucket.org/gibwar/jmm-test · C# · 29 lines · 20 code · 7 blank · 2 comment · 0 complexity · e67f7b7f85cdf2aae7e0b87141d91b7b MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Runtime.Serialization;
  5. namespace MyAnimePlugin3.Downloads
  6. {
  7. [DataContract]
  8. public class TorrentList
  9. {
  10. [DataMember]
  11. public int build { get; set;}
  12. [DataMember]
  13. public List<object> label { get; set; }
  14. [DataMember]
  15. public List<object[]> torrents { get; set; }
  16. [DataMember]
  17. public int torrentc { get; set; }
  18. public List<Torrent> TorrentObjects { get; set; }
  19. //torrents
  20. //torrentc
  21. }
  22. }