mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
22 lines
634 B
C#
22 lines
634 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Qualities;
|
|
using NzbDrone.Core.Tv;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
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; }
|
|
public String Status { get; set; }
|
|
public RemoteEpisode RemoteEpisode { get; set; }
|
|
}
|
|
}
|