IReadOnlyMetadata.cs 341 B

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