using Radarr.Http.REST; namespace Radarr.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; } } }