15 lines
550 B
C#
15 lines
550 B
C#
using DeepDrftModels.DTOs;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace DeepDrftPublic.Client.Controls.AudioPlayerBar;
|
|
|
|
/// <summary>
|
|
/// The now-playing metadata row beneath the <see cref="WaveformSeeker"/>: track title + artist on
|
|
/// the left, genre chip + release year on the right. Reads nothing from the player service itself —
|
|
/// the current <see cref="TrackDto"/> is passed in by <see cref="PlayerSeekZone"/>.
|
|
/// </summary>
|
|
public partial class TrackMetaLabel : ComponentBase
|
|
{
|
|
[Parameter] public TrackDto? Track { get; set; }
|
|
}
|