2013-03-26 05:51:56 +00:00
|
|
|
|
using System;
|
2013-05-03 06:53:32 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-02-23 21:29:22 +00:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
using NzbDrone.Core.Tv;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.History
|
|
|
|
|
{
|
|
|
|
|
public class History : ModelBase
|
|
|
|
|
{
|
2013-06-09 06:20:38 +00:00
|
|
|
|
public History()
|
|
|
|
|
{
|
|
|
|
|
Data = new Dictionary<string, string>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-25 01:38:11 +00:00
|
|
|
|
public int EpisodeId { get; set; }
|
2013-03-26 05:51:56 +00:00
|
|
|
|
public int SeriesId { get; set; }
|
2013-06-09 06:20:38 +00:00
|
|
|
|
public string SourceTitle { get; set; }
|
2013-02-23 21:29:22 +00:00
|
|
|
|
public QualityModel Quality { get; set; }
|
|
|
|
|
public DateTime Date { get; set; }
|
|
|
|
|
|
2013-05-10 22:33:04 +00:00
|
|
|
|
public Episode Episode { get; set; }
|
|
|
|
|
public Series Series { get; set; }
|
2013-06-09 06:20:38 +00:00
|
|
|
|
|
2013-06-11 01:55:05 +00:00
|
|
|
|
public HistoryEventType EventType { get; set; }
|
|
|
|
|
|
2013-06-09 06:20:38 +00:00
|
|
|
|
public Dictionary<string, string> Data { get; set; }
|
2013-02-23 21:29:22 +00:00
|
|
|
|
}
|
2013-06-09 06:20:38 +00:00
|
|
|
|
|
2013-06-11 01:55:05 +00:00
|
|
|
|
|
|
|
|
|
public enum HistoryEventType
|
|
|
|
|
{
|
|
|
|
|
Unknown = 0,
|
|
|
|
|
Grabbed = 1,
|
|
|
|
|
SeriesFolderImported = 2,
|
|
|
|
|
DownloadFolderImported = 3
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-23 21:29:22 +00:00
|
|
|
|
}
|