Sonarr/NzbDrone.Core/Repository/Search/SearchHistoryItem.cs

30 lines
942 B
C#
Raw Normal View History

using System;
2013-03-06 20:30:53 +00:00
using NzbDrone.Core.DecisionEngine;
using NzbDrone.Core.Model;
2013-02-27 03:19:22 +00:00
using NzbDrone.Core.Qualities;
2013-03-02 18:25:39 +00:00
namespace NzbDrone.Core.Repository.Search
{
public class SearchHistoryItem
{
public int Id { get; set; }
public int SearchHistoryId { get; set; }
public string ReportTitle { get; set; }
2012-04-21 08:16:15 +00:00
public string Indexer { get; set; }
public string NzbUrl { get; set; }
public string NzbInfoUrl { get; set; }
public bool Success { get; set; }
2013-03-06 20:30:53 +00:00
public ReportRejectionReasons SearchError { get; set; }
2013-02-27 03:19:22 +00:00
public Quality Quality { get; set; }
public bool Proper { get; set; }
public int Age { get; set; }
public LanguageType Language { get; set; }
public long Size { get; set; }
public override string ToString()
{
return String.Format("{0} - {1} - {2}", ReportTitle, Quality, SearchError);
}
}
}