LyricMetadata.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. namespace MediaBrowser.Model.Lyrics;
  2. /// <summary>
  3. /// LyricMetadata model.
  4. /// </summary>
  5. public class LyricMetadata
  6. {
  7. /// <summary>
  8. /// Gets or sets the song artist.
  9. /// </summary>
  10. public string? Artist { get; set; }
  11. /// <summary>
  12. /// Gets or sets the album this song is on.
  13. /// </summary>
  14. public string? Album { get; set; }
  15. /// <summary>
  16. /// Gets or sets the title of the song.
  17. /// </summary>
  18. public string? Title { get; set; }
  19. /// <summary>
  20. /// Gets or sets the author of the lyric data.
  21. /// </summary>
  22. public string? Author { get; set; }
  23. /// <summary>
  24. /// Gets or sets the length of the song in ticks.
  25. /// </summary>
  26. public long? Length { get; set; }
  27. /// <summary>
  28. /// Gets or sets who the LRC file was created by.
  29. /// </summary>
  30. public string? By { get; set; }
  31. /// <summary>
  32. /// Gets or sets the lyric offset compared to audio in ticks.
  33. /// </summary>
  34. public long? Offset { get; set; }
  35. /// <summary>
  36. /// Gets or sets the software used to create the LRC file.
  37. /// </summary>
  38. public string? Creator { get; set; }
  39. /// <summary>
  40. /// Gets or sets the version of the creator used.
  41. /// </summary>
  42. public string? Version { get; set; }
  43. /// <summary>
  44. /// Gets or sets a value indicating whether this lyric is synced.
  45. /// </summary>
  46. public bool? IsSynced { get; set; }
  47. }