mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
Episode grid will show downloading on grab
New: Update episode status in UI on grab and download
This commit is contained in:
parent
b6693a20a9
commit
daeb2fc652
37 changed files with 613 additions and 128 deletions
17
NzbDrone.Core/Queue/Queue.cs
Normal file
17
NzbDrone.Core/Queue/Queue.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using NzbDrone.Core.Datastore;
|
||||
using NzbDrone.Core.Tv;
|
||||
|
||||
namespace NzbDrone.Core.Queue
|
||||
{
|
||||
public class Queue : ModelBase
|
||||
{
|
||||
public 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue