mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-02 19:08:04 -05:00
8 lines
176 B
C#
8 lines
176 B
C#
namespace Domain.Radarr;
|
|
|
|
public sealed record RadarrCommand
|
|
{
|
|
public required string Name { get; init; }
|
|
|
|
public required HashSet<int> MovieIds { get; init; }
|
|
} |