You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
623 B
22 lines
623 B
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; }
|
|
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 Episode Episode { get; set; }
|
|
public Core.Tv.Series Series { get; set; }
|
|
}
|
|
}
|