TrackSetTable.razor.cs 514 B

1234567891011121314
  1. using Microsoft.AspNetCore.Components;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace FNZCM.BlazorWasm.UI.Components
  4. {
  5. public partial class TrackSetTable : ComponentBase
  6. {
  7. [Parameter, Required] public string LibraryKey { get; set; }
  8. [Parameter, Required] public string DiscKey { get; set; }
  9. [Parameter, Required] public string TrackSetKey { get; set; }
  10. [Parameter, Required] public IReadOnlyCollection<KeyValuePair<string, string>> Tracks { get; set; }
  11. }
  12. }