Radarr/src/Radarr.Api.V3/Queue/QueueStatusResource.cs

16 lines
434 B
C#
Raw Normal View History

2018-11-23 07:03:32 +00:00
using Radarr.Http.REST;
namespace Radarr.Api.V3.Queue
2018-11-23 07:03:32 +00:00
{
public class QueueStatusResource : RestResource
{
public int TotalCount { get; set; }
2018-11-23 07:03:32 +00:00
public int Count { get; set; }
public int UnknownCount { get; set; }
2018-11-23 07:03:32 +00:00
public bool Errors { get; set; }
public bool Warnings { get; set; }
public bool UnknownErrors { get; set; }
public bool UnknownWarnings { get; set; }
2018-11-23 07:03:32 +00:00
}
}