f35abdefe5
* 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
12 lines
254 B
C#
12 lines
254 B
C#
namespace Domain.Models.Sonarr;
|
|
|
|
public sealed record SonarrCommand
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public long? SeriesId { get; set; }
|
|
|
|
public long? SeasonNumber { get; set; }
|
|
|
|
public List<long>? EpisodeIds { get; set; }
|
|
} |