LyricMetadata.cs 510 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. namespace FNZCM.LyricTools.Models.Metadata
  3. {
  4. public class LyricMetadata : ILyricMetadata
  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. public string Lang { get; set; }
  13. public bool IsTranslated { get; set; }
  14. }
  15. }