Radarr/NzbDrone.Core/Indexers/Nzbx/NzbxRecentItem.cs

44 lines
1.3 KiB
C#
Raw Normal View History

2012-12-21 08:35:20 +00:00
using System;
2013-04-07 22:40:13 +00:00
namespace NzbDrone.Core.Indexers.Nzbx
2012-12-21 08:35:20 +00:00
{
public class NzbxRecentItem
{
//"ID": "571777",
//"name": "Cak4QCQG",
//"totalpart": "10",
//"groupID": "99",
//"size": "890190951",
//"postdate": "2012-12-20 18:14:13",
//"guid": "48714abb00a095e00fbcbe161253abf6",
//"fromname": "#cripples <masturb@ting.in.wheelchairs>",
//"completion": "100",
//"categoryID": "5050",
//"imdbID": null,
//"anidbID": null,
//"rageID": "-1",
//"comments": "0",
//"downloads": "3",
//"votes": {
// "upvotes": 0,
// "downvotes": 0
//}
public int Id { get; set; }
public string Name { get; set; }
public int TotalPart { get; set; }
public int GroupId { get; set; }
public long Size { get; set; }
public DateTime PostDate { get; set; }
public string Guid { get; set; }
public string FromName { get; set; }
public int Completion { get; set; }
public int CategoryId { get; set; }
public string ImdbId { get; set; }
public string AnidbId { get; set; }
2013-04-18 05:26:12 +00:00
public long RageId { get; set; }
2012-12-21 08:35:20 +00:00
public int Comments { get; set; }
public int Downloads { get; set; }
}
}