LyricDto.cs 455 B

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