namespace DeepDrftModels.DTOs;
///
/// One distinct album with its track count and a representative cover image key. Backs the
/// /albums browse grid.
///
[Obsolete("Replaced by ReleaseDto. Use ITrackService.GetReleases().")]
public class AlbumSummaryDto
{
public required string Album { get; set; }
public int TrackCount { get; set; }
/// ImagePath of the first track in the album that has one; null when none do.
public string? CoverImageKey { get; set; }
}