mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
caa6a3858b
Fixed: Show a warning in Queue when drone is unable to import due to a name mismatch Fixed: Better UI messages for Queue when there is an error or warning
25 lines
739 B
C#
25 lines
739 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public class DownloadClientItem
|
|
{
|
|
public String DownloadClient { get; set; }
|
|
public String DownloadClientId { 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 String OutputPath { get; set; }
|
|
public String Message { get; set; }
|
|
|
|
public DownloadItemStatus Status { get; set; }
|
|
public Boolean IsEncrypted { get; set; }
|
|
public Boolean IsReadOnly { get; set; }
|
|
}
|
|
}
|