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