mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-29 02:57:15 +02:00
daeb2fc652
New: Update episode status in UI on grab and download
18 lines
469 B
C#
18 lines
469 B
C#
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; }
|
|
}
|
|
}
|