RemoteLyricInfo.cs 661 B

1234567891011121314151617181920212223242526272829
  1. using MediaBrowser.Model.Lyrics;
  2. namespace MediaBrowser.Model.Providers;
  3. /// <summary>
  4. /// The remote lyric info.
  5. /// </summary>
  6. public class RemoteLyricInfo
  7. {
  8. /// <summary>
  9. /// Gets or sets the id for the lyric.
  10. /// </summary>
  11. public required string Id { get; set; }
  12. /// <summary>
  13. /// Gets the provider name.
  14. /// </summary>
  15. public required string ProviderName { get; init; }
  16. /// <summary>
  17. /// Gets the lyric metadata.
  18. /// </summary>
  19. public required LyricMetadata Metadata { get; init; }
  20. /// <summary>
  21. /// Gets the lyrics.
  22. /// </summary>
  23. public required LyricResponse Lyrics { get; init; }
  24. }