You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
using System;
|
|
using Newtonsoft.Json;
|
|
using NzbDrone.Core.Download.Clients.Sabnzbd.JsonConverters;
|
|
using NzbDrone.Core.Model;
|
|
|
|
namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
|
{
|
|
public class SabQueueItem
|
|
{
|
|
public string Status { get; set; }
|
|
public int Index { get; set; }
|
|
|
|
[JsonConverter(typeof(SabnzbdQueueTimeConverter))]
|
|
public TimeSpan Timeleft { get; set; }
|
|
|
|
[JsonProperty(PropertyName = "mb")]
|
|
public decimal Size { get; set; }
|
|
|
|
private string _title;
|
|
|
|
[JsonProperty(PropertyName = "filename")]
|
|
public string Title { get; set; }
|
|
|
|
[JsonConverter(typeof(SabnzbdPriorityTypeConverter))]
|
|
public SabPriorityType Priority { get; set; }
|
|
|
|
[JsonProperty(PropertyName = "cat")]
|
|
public string Category { get; set; }
|
|
|
|
[JsonProperty(PropertyName = "mbleft")]
|
|
public decimal SizeLeft { get; set; }
|
|
|
|
public int Percentage { get; set; }
|
|
|
|
[JsonProperty(PropertyName = "nzo_id")]
|
|
public string Id { get; set; }
|
|
}
|
|
}
|