using Microsoft.AspNetCore.Components; using System.ComponentModel.DataAnnotations; namespace FNZCM.BlazorWasm.UI.Components { public partial class TrackSetTable : ComponentBase { [Parameter, Required] public string LibraryKey { get; set; } [Parameter, Required] public string DiscKey { get; set; } [Parameter, Required] public string TrackSetKey { get; set; } [Parameter, Required] public IReadOnlyCollection> Tracks { get; set; } } }