Episode grid will show downloading on grab

New: Update episode status in UI on grab and download
This commit is contained in:
Mark McDowall 2013-10-01 22:20:30 -07:00
commit daeb2fc652
37 changed files with 613 additions and 128 deletions

View file

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using NzbDrone.Api.REST;
using NzbDrone.Core.Tv;
namespace NzbDrone.Api.Queue
{
public class QueueResource : RestResource
{
public Core.Tv.Series Series { get; set; }
public Episode Episode { get; set; }
public QualityModel Quality { get; set; }
public Decimal Size { get; set; }
public String Title { get; set; }
public Decimal SizeLeft { get; set; }
public TimeSpan Timeleft { get; set; }
}
}