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.
28 lines
833 B
28 lines
833 B
using NzbDrone.Core.Model;
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class SearchItemModel
|
|
{
|
|
public SearchItemModel()
|
|
{
|
|
Details = "";
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
public string ReportTitle { get; set; }
|
|
public string Indexer { get; set; }
|
|
public string NzbUrl { get; set; }
|
|
public string NzbInfoUrl { get; set; }
|
|
public bool Success { get; set; }
|
|
public string SearchError { get; set; }
|
|
public string Quality { get; set; }
|
|
public int QualityInt { get; set; }
|
|
public bool Proper { get; set; }
|
|
public int Age { get; set; }
|
|
public string Language { get; set; }
|
|
public string Size { get; set; }
|
|
public string Details { get; set; }
|
|
}
|
|
} |