mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-04 11:58:04 -05:00
16 lines
345 B
C#
16 lines
345 B
C#
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<long>? EpisodeIds { get; set; }
|
|
|
|
public SonarrSearchType SearchType { get; set; }
|
|
} |