mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 01:52:41 -04:00
10 lines
218 B
C#
10 lines
218 B
C#
namespace Cleanuparr.Domain.Entities.Lidarr;
|
|
|
|
public sealed record LidarrCommand
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public List<long> AlbumIds { get; set; }
|
|
|
|
public long ArtistId { get; set; }
|
|
} |