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

28 lines
807 B
C#
Raw Normal View History

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