/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
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace JMMClient.Downloads
- {
- public class TorrentList
- {
- public int build { get; set; }
- public List<object> label { get; set; }
- public List<object[]> torrents { get; set; }
- public int torrentc { get; set; }
-
- public List<Torrent> TorrentObjects { get; set; }
-
- }
- }