27522c1e1c
- Theming adjustments (still needs a lot of work)
9 lines
272 B
C#
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>();
|
|
} |