1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Api/History/HistoryResource.cs

28 lines
807 B
C#
Raw Normal View History

2013-05-03 08:53:32 +02:00
using System;
2013-06-11 03:55:05 +02:00
using System.Collections.Generic;
2013-05-03 08:53:32 +02:00
using NzbDrone.Api.REST;
2013-06-11 03:55:05 +02:00
using NzbDrone.Core.History;
2013-05-03 08:53:32 +02:00
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 08:45:34 +02:00
public string SourceTitle { get; set; }
2013-05-03 08:53:32 +02: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; }
2013-06-11 03:55:05 +02:00
public HistoryEventType EventType { get; set; }
public Dictionary<string, string> Data { get; set; }
2013-05-03 08:53:32 +02:00
public Episode Episode { get; set; }
2013-06-11 03:55:05 +02:00
public Core.Tv.Series Series { get; set; }
2013-05-03 08:53:32 +02:00
}
}