mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
New: Rebuilt Completed/Failed download handling from scratch
This commit is contained in:
@@ -1,18 +1,19 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using NzbDrone.Common.Disk;
|
||||
|
||||
namespace NzbDrone.Core.Download
|
||||
{
|
||||
[DebuggerDisplay("{DownloadClient}:{Title}")]
|
||||
public class DownloadClientItem
|
||||
{
|
||||
public String DownloadClient { get; set; }
|
||||
public String DownloadClientId { get; set; }
|
||||
public String DownloadId { get; set; }
|
||||
public String Category { get; set; }
|
||||
public String Title { get; set; }
|
||||
|
||||
public Int64 TotalSize { get; set; }
|
||||
public Int64 RemainingSize { get; set; }
|
||||
public TimeSpan? DownloadTime { get; set; }
|
||||
public TimeSpan? RemainingTime { get; set; }
|
||||
|
||||
public OsPath OutputPath { get; set; }
|
||||
@@ -21,5 +22,7 @@ namespace NzbDrone.Core.Download
|
||||
public DownloadItemStatus Status { get; set; }
|
||||
public Boolean IsEncrypted { get; set; }
|
||||
public Boolean IsReadOnly { get; set; }
|
||||
|
||||
public bool Removed { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user