|
|
|
@ -25,6 +25,7 @@ namespace Radarr.Api.V3.Queue
|
|
|
|
|
public decimal Sizeleft { get; set; }
|
|
|
|
|
public TimeSpan? Timeleft { get; set; }
|
|
|
|
|
public DateTime? EstimatedCompletionTime { get; set; }
|
|
|
|
|
public DateTime? Added { get; set; }
|
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
public TrackedDownloadStatus? TrackedDownloadStatus { get; set; }
|
|
|
|
|
public TrackedDownloadState? TrackedDownloadState { get; set; }
|
|
|
|
@ -63,6 +64,7 @@ namespace Radarr.Api.V3.Queue
|
|
|
|
|
Sizeleft = model.Sizeleft,
|
|
|
|
|
Timeleft = model.Timeleft,
|
|
|
|
|
EstimatedCompletionTime = model.EstimatedCompletionTime,
|
|
|
|
|
Added = model.Added,
|
|
|
|
|
Status = model.Status.FirstCharToLower(),
|
|
|
|
|
TrackedDownloadStatus = model.TrackedDownloadStatus,
|
|
|
|
|
TrackedDownloadState = model.TrackedDownloadState,
|
|
|
|
|