2013-04-15 01:41:39 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Parser.Model
|
|
|
|
{
|
|
|
|
public class ReportInfo
|
|
|
|
{
|
|
|
|
public string Title { get; set; }
|
|
|
|
public long Size { get; set; }
|
|
|
|
public string NzbUrl { get; set; }
|
|
|
|
public string NzbInfoUrl { get; set; }
|
|
|
|
public String Indexer { get; set; }
|
|
|
|
public int Age { get; set; }
|
|
|
|
public string ReleaseGroup { get; set; }
|
2013-08-19 05:53:26 +00:00
|
|
|
public int TvRageId { get; set; }
|
2013-04-15 01:41:39 +00:00
|
|
|
}
|
|
|
|
}
|