mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-24 22:37:06 -04:00
15 lines
434 B
C#
15 lines
434 B
C#
using Sonarr.Http.REST;
|
|
|
|
namespace Sonarr.Api.V3.Queue
|
|
{
|
|
public class QueueStatusResource : RestResource
|
|
{
|
|
public int TotalCount { get; set; }
|
|
public int Count { get; set; }
|
|
public int UnknownCount { get; set; }
|
|
public bool Errors { get; set; }
|
|
public bool Warnings { get; set; }
|
|
public bool UnknownErrors { get; set; }
|
|
public bool UnknownWarnings { get; set; }
|
|
}
|
|
}
|