Files
Cleanuparr/code/Domain/Models/Radarr/RadarrCommand.cs
Marius Nechifor f35abdefe5 Add sonarr search option (#18)
* added Sonarr search type option

* updated test data

* fixed duplicated Sonarr search items when using search type Season

* added enhanced logging option along with Sonarr and Radarr enhanced logs

* switched to ghcr.io
2024-12-04 22:38:32 +02:00

8 lines
181 B
C#

namespace Domain.Models.Radarr;
public sealed record RadarrCommand
{
public required string Name { get; init; }
public required List<long> MovieIds { get; init; }
}