Files
deepdrft/DeepDrftWeb.Client/Controls/TrackPlayer.razor.cs
T
daniel-c-harvey 27522c1e1c Front End Track Gallery Controls
- Theming adjustments (still needs a lot of work)
2025-09-04 14:18:35 -04:00

14 lines
338 B
C#

using Microsoft.AspNetCore.Components;
using DeepDrftModels.Entities;
namespace DeepDrftWeb.Client.Controls;
public partial class TrackPlayer : ComponentBase
{
[Parameter] public TrackEntity? Track { get; set; }
private void HandlePlayClick()
{
// TODO: Implement play functionality with injected service
}
}