mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-06 04:47:50 -05:00
6 lines
131 B
C#
6 lines
131 B
C#
namespace Domain.Models.Arr.Queue;
|
|
|
|
public sealed record QueueAlbum
|
|
{
|
|
public List<LidarrImage> Images { get; init; } = [];
|
|
} |