2012-04-20 06:42:13 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
|
using PetaPoco;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Repository.Search
|
|
|
|
|
{
|
|
|
|
|
[PrimaryKey("Id", autoIncrement = true)]
|
|
|
|
|
[TableName("SearchResultItems")]
|
|
|
|
|
public class SearchResultItem
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public int SearchResultId { get; set; }
|
|
|
|
|
public string ReportTitle { get; set; }
|
2012-04-21 08:16:15 +00:00
|
|
|
|
public string Indexer { get; set; }
|
2012-04-20 06:42:13 +00:00
|
|
|
|
public string NzbUrl { get; set; }
|
|
|
|
|
public string NzbInfoUrl { get; set; }
|
|
|
|
|
public bool Success { get; set; }
|
|
|
|
|
public ReportRejectionType SearchError { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|