- using System.Collections.Generic;
- namespace FNZCM.LyricTools.Models.Metadata
- {
- public interface IReadOnlyMetadata
- {
- string Album { get; }
- string Title { get; }
- string Artist { get; }
- IReadOnlyList<string> ArtistList { get; }
- int DurationMs { get; }
- string FileName { get; }
- }
- }
|