Radarr/NzbDrone.Core/Repository/History.cs

26 lines
674 B
C#
Raw Normal View History

using System;
using NzbDrone.Core.Repository.Quality;
2011-06-17 06:59:13 +00:00
using PetaPoco;
namespace NzbDrone.Core.Repository
{
2011-06-17 06:59:13 +00:00
[PrimaryKey("HistoryId")]
public class History
{
2011-06-17 06:59:13 +00:00
public int HistoryId { get; set; }
2011-04-10 02:44:01 +00:00
2011-06-17 06:59:13 +00:00
public int EpisodeId { get; set; }
public int SeriesId { get; set; }
public string NzbTitle { get; set; }
public QualityTypes Quality { get; set; }
public DateTime Date { get; set; }
public bool IsProper { get; set; }
2011-05-19 03:58:42 +00:00
public string Indexer { get; set; }
[ResultColumn]
public Episode Episode { get; set; }
[ResultColumn]
public string SeriesTitle { get; set; }
}
2011-04-10 02:44:01 +00:00
}