mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-01 10:28:11 -05:00
* 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
8 lines
181 B
C#
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; }
|
|
} |