2013-01-24 06:36:37 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
2013-03-05 05:33:34 +00:00
|
|
|
|
namespace NzbDrone.Core.Download.Clients.Nzbget
|
2013-01-24 06:36:37 +00:00
|
|
|
|
{
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public class NzbGetQueue
|
2013-01-24 06:36:37 +00:00
|
|
|
|
{
|
|
|
|
|
public String Version { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(PropertyName = "result")]
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public List<NzbGetQueueItem> QueueItems { get; set; }
|
2013-01-24 06:36:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|