FeLibrary.cs 263 B

1234567891011
  1. namespace FNZCM.BlazorWasm.Models
  2. {
  3. public class FeLibrary
  4. {
  5. public string Key { get; set; }
  6. public string Name { get; set; }
  7. public FeDisc[] Discs { get; set; }
  8. public FeLibraryCatalog[] Catalogs { get; set; }
  9. }
  10. }