FeLibrary.cs 268 B

12345678910111213
  1. namespace FNZCM.BlazorWasm.Models.Fe
  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. }