mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-01 18:37:48 -05:00
10 lines
205 B
C#
10 lines
205 B
C#
namespace Domain.Models.Lidarr;
|
|
|
|
public sealed record LidarrCommand
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public List<long> AlbumIds { get; set; }
|
|
|
|
public long ArtistId { get; set; }
|
|
} |