mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-31 16:02:29 +01:00
19 lines
498 B
C#
19 lines
498 B
C#
using System.Linq;
|
|
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.History
|
|
{
|
|
public class History : ModelBase
|
|
{
|
|
public int EpisodeId { get; set; }
|
|
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; }
|
|
|
|
}
|
|
} |