Lidarr/src/NzbDrone.Core/Queue/Queue.cs

36 lines
1.3 KiB
C#
Raw Normal View History

2017-09-04 02:20:56 +00:00
using System;
using System.Collections.Generic;
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Download.TrackedDownloads;
2015-01-31 08:24:09 +00:00
using NzbDrone.Core.Indexers;
using NzbDrone.Core.Music;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.Qualities;
namespace NzbDrone.Core.Queue
{
public class Queue : ModelBase
{
public Artist Artist { get; set; }
public Album Album { get; set; }
public QualityModel Quality { get; set; }
public decimal Size { get; set; }
public string Title { get; set; }
public decimal Sizeleft { get; set; }
public TimeSpan? Timeleft { get; set; }
public DateTime? EstimatedCompletionTime { get; set; }
public string Status { get; set; }
public TrackedDownloadStatus? TrackedDownloadStatus { get; set; }
public TrackedDownloadState? TrackedDownloadState { get; set; }
public List<TrackedDownloadStatusMessage> StatusMessages { get; set; }
public string DownloadId { get; set; }
public RemoteAlbum RemoteAlbum { get; set; }
2015-01-31 08:24:09 +00:00
public DownloadProtocol Protocol { get; set; }
2017-09-04 02:20:56 +00:00
public string DownloadClient { get; set; }
public string Indexer { get; set; }
2019-04-28 04:32:38 +00:00
public string OutputPath { get; set; }
2017-09-04 02:20:56 +00:00
public string ErrorMessage { get; set; }
public bool DownloadForced { get; set; }
}
}