You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Download/Clients/Blackhole/WatchFolderItem.cs

19 lines
526 B

using System;
using NzbDrone.Common.Disk;
namespace NzbDrone.Core.Download.Clients.Blackhole
{
public class WatchFolderItem
{
public string DownloadId { get; set; }
public string Title { get; set; }
public long TotalSize { get; set; }
public TimeSpan? RemainingTime { get; set; }
public OsPath OutputPath { get; set; }
public DownloadItemStatus Status { get; set; }
public DateTime LastChanged { get; set; }
public string Hash { get; set; }
}
}