Radarr/NzbDrone.Api/Queue/QueueResource.cs

19 lines
515 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using NzbDrone.Api.REST;
using NzbDrone.Core.Tv;
namespace NzbDrone.Api.Queue
{
public class QueueResource : RestResource
{
public Core.Tv.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; }
}
}