IMetadata.cs 408 B

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