mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-05-24 06:28:19 -04:00
8 lines
162 B
C#
8 lines
162 B
C#
namespace Domain.Sonarr;
|
|
|
|
public sealed record SonarrCommand
|
|
{
|
|
public required string Name { get; init; }
|
|
|
|
public required int SeriesId { get; set; }
|
|
} |