You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
396 B
15 lines
396 B
12 years ago
|
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; }
|
||
|
}
|
||
|
}
|