1234567891011121314 |
- 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<KeyValuePair<string, string>> Tracks { get; set; }
- }
- }
|