mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 01:38:02 -05:00
8 lines
179 B
C#
8 lines
179 B
C#
namespace Data.Models.Radarr;
|
|
|
|
public sealed record RadarrCommand
|
|
{
|
|
public required string Name { get; init; }
|
|
|
|
public required List<long> MovieIds { get; init; }
|
|
} |