1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-21 11:02:01 +02:00

23 lines
660 B
C#
Raw Normal View History

using System;
2013-05-02 23:53:32 -07:00
using System.Collections.Generic;
using Marr.Data;
2013-02-23 13:29:22 -08:00
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.History
{
public class History : ModelBase
{
2013-03-24 18:38:11 -07:00
public int EpisodeId { get; set; }
public int SeriesId { get; set; }
2013-02-23 13:29:22 -08: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; }
2013-05-10 15:33:04 -07:00
public Episode Episode { get; set; }
public Series Series { get; set; }
2013-02-23 13:29:22 -08:00
}
}