FeLibraryCatalog.cs 269 B

12345678910
  1. namespace FNZCM.BlazorWasm.Models
  2. {
  3. public class FeLibraryCatalog
  4. {
  5. public string Name { get; set; }
  6. public string PlaylistPath { get; set; }
  7. public long TotalBytes { get; set; }
  8. public int TotalDuration { get; set; }
  9. }
  10. }