Radarr/src/NzbDrone.Core/Download/QueueItem.cs
Mark McDowall 6d46819972 Download client will return queue with remoteEpsiode
Fixed: In Queue check is more accurate
2013-10-08 23:58:29 -07:00

16 lines
444 B
C#

using System;
using NzbDrone.Core.Parser.Model;
namespace NzbDrone.Core.Download
{
public class QueueItem
{
public string Id { 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; }
}
}