mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-22 12:49:35 -05:00
10 lines
204 B
C#
10 lines
204 B
C#
namespace Domain.Sonarr.Queue;
|
|
|
|
public record QueueListResponse(
|
|
int Page,
|
|
int PageSize,
|
|
string SortKey,
|
|
string SortDirection,
|
|
int TotalRecords,
|
|
IReadOnlyList<Record> Records
|
|
); |