mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-06 04:47:50 -05:00
7 lines
196 B
C#
7 lines
196 B
C#
namespace Domain.Models.Arr.Queue;
|
|
|
|
public record QueueListResponse
|
|
{
|
|
public required int TotalRecords { get; init; }
|
|
public required IReadOnlyList<QueueRecord> Records { get; init; }
|
|
} |