mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-15 17:28:26 -05:00
8 lines
195 B
C#
8 lines
195 B
C#
namespace Cleanuparr.Domain.Entities.Readarr;
|
|
|
|
public sealed record ReadarrCommand
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public List<long> BookIds { get; set; } = [];
|
|
} |