mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
16 lines
436 B
C#
16 lines
436 B
C#
using Readarr.Http.REST;
|
|
|
|
namespace Readarr.Api.V1.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; }
|
|
}
|
|
}
|