Implement Release Parsing, Decision Engine, and Downloading (#35)

* Implement Parsing, Decision Engine, and Downloading
This commit is contained in:
Qstick 2017-08-13 22:58:42 -04:00 committed by GitHub
parent 5556989324
commit 1e4d9480e9
191 changed files with 2604 additions and 2755 deletions

View file

@ -6,12 +6,14 @@ using NzbDrone.Core.Indexers;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.Qualities;
using NzbDrone.Core.Tv;
using NzbDrone.Core.Music;
namespace NzbDrone.Core.Queue
{
public class Queue : ModelBase
{
public Series Series { get; set; }
public Artist Artist { get; set; }
public Album Album { get; set; }
public Episode Episode { get; set; }
public QualityModel Quality { get; set; }
public decimal Size { get; set; }
@ -23,7 +25,7 @@ namespace NzbDrone.Core.Queue
public string TrackedDownloadStatus { get; set; }
public List<TrackedDownloadStatusMessage> StatusMessages { get; set; }
public string DownloadId { get; set; }
public RemoteEpisode RemoteEpisode { get; set; }
public RemoteAlbum RemoteAlbum { get; set; }
public DownloadProtocol Protocol { get; set; }
}
}