mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-30 03:53:00 -04:00
8 lines
161 B
C#
8 lines
161 B
C#
namespace Cleanuparr.Domain.Entities.Lidarr;
|
|
|
|
public sealed record Artist
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string ArtistName { get; set; }
|
|
} |