mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-17 21:26:13 -04:00
45 lines
1.6 KiB
C#
45 lines
1.6 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.Parser.Model;
|
|
using NzbDrone.Core.Qualities;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Queue
|
|
{
|
|
public class Queue : ModelBase
|
|
{
|
|
public Series Series { get; set; }
|
|
|
|
public int? SeasonNumber { get; set; }
|
|
|
|
[Obsolete]
|
|
public Episode Episode { get; set; }
|
|
|
|
public List<Episode> Episodes { 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 RemoteEpisode RemoteEpisode { 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; }
|
|
}
|
|
}
|