using System; using System.Collections.Generic; using NzbDrone.Api.REST; using NzbDrone.Core.Parser; using NzbDrone.Core.Qualities; using NzbDrone.Core.Indexers; namespace NzbDrone.Api.Indexers { public class ReleaseResource : RestResource { public string Guid { get; set; } public QualityModel Quality { get; set; } public int QualityWeight { get; set; } public int Age { get; set; } public double AgeHours { get; set; } public double AgeMinutes { get; set; } public long Size { get; set; } public int IndexerId { get; set; } public string Indexer { get; set; } public string ReleaseGroup { get; set; } public string SubGroup { get; set; } public string ReleaseHash { get; set; } public string Title { get; set; } public bool FullSeason { get; set; } public bool SceneSource { get; set; } public int SeasonNumber { get; set; } public Language Language { get; set; } public string AirDate { get; set; } public string SeriesTitle { get; set; } public int[] EpisodeNumbers { get; set; } public int[] AbsoluteEpisodeNumbers { get; set; } public bool Approved { get; set; } public bool TemporarilyRejected { get; set; } public bool Rejected { get; set; } public int TvdbId { get; set; } public int TvRageId { get; set; } public IEnumerable Rejections { get; set; } public DateTime PublishDate { get; set; } public string CommentUrl { get; set; } public string DownloadUrl { get; set; } public string InfoUrl { get; set; } public bool DownloadAllowed { get; set; } public int ReleaseWeight { get; set; } public int? Seeders { get; set; } public int? Leechers { get; set; } public DownloadProtocol Protocol { get; set; } //TODO: besides a test I don't think this is used... public DownloadProtocol DownloadProtocol { get; set; } public bool IsDaily { get; set; } public bool IsAbsoluteNumbering { get; set; } public bool IsPossibleSpecialEpisode { get; set; } public bool Special { get; set; } } }