mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
ff09da3a69
(cherry picked from commit fb540040ef66e90c55b82539b85df378d6c76bd3) Closes #10648
38 lines
1.4 KiB
C#
38 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Download.TrackedDownloads;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.Languages;
|
|
using NzbDrone.Core.Movies;
|
|
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.Qualities;
|
|
|
|
namespace NzbDrone.Core.Queue
|
|
{
|
|
public class Queue : ModelBase
|
|
{
|
|
public Movie Movie { get; set; }
|
|
public List<Language> Languages { 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 DateTime? Added { get; set; }
|
|
public QueueStatus 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 RemoteMovie RemoteMovie { get; set; }
|
|
public DownloadProtocol Protocol { get; set; }
|
|
public string DownloadClient { get; set; }
|
|
public bool DownloadClientHasPostImportCategory { get; set; }
|
|
public string Indexer { get; set; }
|
|
public string OutputPath { get; set; }
|
|
public string ErrorMessage { get; set; }
|
|
}
|
|
}
|