1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 01:11:43 +02:00
Radarr/NzbDrone.Core/Repository/History.cs

20 lines
533 B
C#
Raw Normal View History

using System;
using NzbDrone.Core.Repository.Quality;
2011-06-17 08:59:13 +02:00
using PetaPoco;
namespace NzbDrone.Core.Repository
{
2011-06-17 08:59:13 +02:00
[PrimaryKey("HistoryId")]
public class History
{
2011-06-17 08:59:13 +02:00
public int HistoryId { get; set; }
2011-04-10 04:44:01 +02:00
2011-06-17 08:59:13 +02: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 05:58:42 +02:00
public string Indexer { get; set; }
}
2011-04-10 04:44:01 +02:00
}