using DeepDrftModels.DTOs; using Microsoft.AspNetCore.Components; namespace DeepDrftPublic.Client.Controls.AudioPlayerBar; /// /// The now-playing metadata row beneath the : track title + artist on /// the left, genre chip + release year on the right. Reads nothing from the player service itself — /// the current is passed in by . /// public partial class TrackMetaLabel : ComponentBase { [Parameter] public TrackDto? Track { get; set; } }