PageRenderTime 40ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/JMMClient/JMMClient/Downloads/TorrentList.cs

https://bitbucket.org/gibwar/jmm-test
C# | 18 lines | 15 code | 3 blank | 0 comment | 0 complexity | 528eca1599076907a3b749b88f63808c MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace JMMClient.Downloads
  6. {
  7. public class TorrentList
  8. {
  9. public int build { get; set; }
  10. public List<object> label { get; set; }
  11. public List<object[]> torrents { get; set; }
  12. public int torrentc { get; set; }
  13. public List<Torrent> TorrentObjects { get; set; }
  14. }
  15. }