LyricResponse.cs 501 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Lyrics;
  4. /// <summary>
  5. /// LyricResponse model.
  6. /// </summary>
  7. public class LyricResponse
  8. {
  9. /// <summary>
  10. /// Gets or sets Metadata for the lyrics.
  11. /// </summary>
  12. public LyricMetadata Metadata { get; set; } = new();
  13. /// <summary>
  14. /// Gets or sets a collection of individual lyric lines.
  15. /// </summary>
  16. public IReadOnlyList<LyricLine> Lyrics { get; set; } = Array.Empty<LyricLine>();
  17. }