mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-21 12:18:59 -05:00
12 lines
228 B
C#
12 lines
228 B
C#
namespace Data.Models.Lidarr;
|
|
|
|
public sealed record Album
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public long ArtistId { get; set; }
|
|
|
|
public Artist Artist { get; set; }
|
|
} |