1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-18 23:48:35 +02:00
Sonarr/src/NzbDrone.Core/History/History.cs

34 lines
906 B
C#
Raw Normal View History

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