mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
10 lines
162 B
C#
10 lines
162 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Lidarr.Api.V3.Queue
|
|
{
|
|
public class QueueBulkResource
|
|
{
|
|
public List<int> Ids { get; set; }
|
|
}
|
|
}
|