1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
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

14 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; }
}
}