feature: Track Meta Labels on Player
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user