LyricMetadata.cs 1.3 KB

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