1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Api/History/HistoryResource.cs

22 lines
626 B
C#
Raw Normal View History

2013-05-03 09:53:32 +03:00
using System;
using NzbDrone.Api.REST;
using NzbDrone.Core.Tv;
namespace NzbDrone.Api.History
{
public class HistoryResource : RestResource
{
public int EpisodeId { get; set; }
public int SeriesId { get; set; }
2013-06-09 09:45:34 +03:00
public string SourceTitle { get; set; }
2013-05-03 09:53:32 +03:00
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 Episode Episode { get; set; }
public Core.Tv.Series Series { get; set; }
}
}