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

21 lines
595 B
C#
Raw Normal View History

using System;
using Marr.Data;
2013-02-23 22:29:22 +01:00
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.History
{
public class History : ModelBase
{
2013-03-25 02:38:11 +01:00
public int EpisodeId { get; set; }
public int SeriesId { get; set; }
2013-02-23 22:29:22 +01:00
public string NzbTitle { get; set; }
public QualityModel Quality { get; set; }
public DateTime Date { get; set; }
public string Indexer { get; set; }
public string NzbInfoUrl { get; set; }
public string ReleaseGroup { get; set; }
public LazyLoaded<Episode> Episode { get; set; }
2013-02-23 22:29:22 +01:00
}
}