Files
deepdrft/DeepDrftWeb.Client/Controls/TracksGallery.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

9 lines
272 B
C#

using Microsoft.AspNetCore.Components;
using DeepDrftModels.Entities;
namespace DeepDrftWeb.Client.Controls;
public partial class TracksGallery : ComponentBase
{
[Parameter] public IEnumerable<TrackEntity> Tracks { get; set; } = Enumerable.Empty<TrackEntity>();
}