mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 01:52:41 -04:00
12 lines
243 B
C#
12 lines
243 B
C#
namespace Cleanuparr.Domain.Entities.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; }
|
|
} |