1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-05 00:49:20 +02:00
Files
Sonarr/src/NzbDrone.Core/Queue/Queue.cs

19 lines
512 B
C#
Raw Normal View History

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; }
2013-10-02 08:33:23 -07:00
public Decimal Sizeleft { get; set; }
public TimeSpan Timeleft { get; set; }
2013-10-03 14:06:52 -07:00
public String Status { get; set; }
}
}