mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-21 20:29:22 -05:00
8 lines
148 B
C#
8 lines
148 B
C#
namespace Domain.Models.Lidarr;
|
|
|
|
public sealed record Artist
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string ArtistName { get; set; }
|
|
} |