Prowlarr/NzbDrone.Core/Download/QueueItem.cs
Mark McDowall daeb2fc652 Episode grid will show downloading on grab
New: Update episode status in UI on grab and download
2013-10-01 22:20:30 -07:00

13 lines
310 B
C#

using System;
namespace NzbDrone.Core.Download
{
public class QueueItem
{
public string Id { get; set; }
public decimal Size { get; set; }
public string Title { get; set; }
public decimal SizeLeft { get; set; }
public TimeSpan Timeleft { get; set; }
}
}