MediaMetadata.cs 417 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace FNZCM.LyricTools.Models.Metadata
  3. {
  4. public class MediaMetadata : IMetadata
  5. {
  6. public string Title { get; set; }
  7. public string Artist { get; set; }
  8. public IReadOnlyList<string> ArtistList { get; set; }
  9. public string Album { get; set; }
  10. public int DurationMs { get; set; }
  11. public string FileName { get; set; }
  12. }
  13. }