namespace octo_fiesta.Models.Domain; /// /// Represents an album /// public class Album { public string Id { get; set; } = string.Empty; public string Title { get; set; } = string.Empty; public string Artist { get; set; } = string.Empty; public string? ArtistId { get; set; } public int? Year { get; set; } public int? SongCount { get; set; } public string? CoverArtUrl { get; set; } public string? Genre { get; set; } public bool IsLocal { get; set; } public string? ExternalProvider { get; set; } public string? ExternalId { get; set; } public List Songs { get; set; } = new(); }