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