using Common.Configuration.Arr; 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? EpisodeIds { get; set; } public SonarrSearchType SearchType { get; set; } }