mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-02 01:52:17 -05:00
16 lines
343 B
C#
16 lines
343 B
C#
using Common.Configuration.Arr;
|
|
|
|
namespace Data.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; }
|
|
} |