Files

16 lines
598 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; }
[Parameter] public bool Fixed { get; set; }
}