mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 01:52:41 -04:00
16 lines
357 B
C#
16 lines
357 B
C#
using Cleanuparr.Domain.Enums;
|
|
|
|
namespace Cleanuparr.Domain.Entities.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 SeriesSearchType SearchType { get; set; }
|
|
} |