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