mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-31 18:08:44 -05:00
8 lines
194 B
C#
8 lines
194 B
C#
namespace Cleanuparr.Domain.Entities.Radarr;
|
|
|
|
public sealed record RadarrCommand
|
|
{
|
|
public required string Name { get; init; }
|
|
|
|
public required List<long> MovieIds { get; init; }
|
|
} |