Metadata.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Lyrics;
  3. /// <summary>
  4. /// Metadata model.
  5. /// </summary>
  6. public class Metadata
  7. {
  8. /// <summary>
  9. /// Gets or sets Artist - [ar:The song artist].
  10. /// </summary>
  11. public string? Ar { get; set; }
  12. /// <summary>
  13. /// Gets or sets Album - [al:The album this song is on].
  14. /// </summary>
  15. public string? Al { get; set; }
  16. /// <summary>
  17. /// Gets or sets Title - [ti:The title of the song].
  18. /// </summary>
  19. public string? Ti { get; set; }
  20. /// <summary>
  21. /// Gets or sets Author - [au:Creator of the lyric data].
  22. /// </summary>
  23. public string? Au { get; set; }
  24. /// <summary>
  25. /// Gets or sets Length - [length:How long the song is].
  26. /// </summary>
  27. public string? Length { get; set; }
  28. /// <summary>
  29. /// Gets or sets By - [by:Creator of the LRC file].
  30. /// </summary>
  31. public string? By { get; set; }
  32. /// <summary>
  33. /// Gets or sets Offset - [offsec:+/- Timestamp adjustment in milliseconds].
  34. /// </summary>
  35. public string? Offset { get; set; }
  36. /// <summary>
  37. /// Gets or sets Creator - [re:The Software used to create the LRC file].
  38. /// </summary>
  39. public string? Re { get; set; }
  40. /// <summary>
  41. /// Gets or sets Version - [ve:The version of the Creator used].
  42. /// </summary>
  43. public string? Ve { get; set; }
  44. }