LyricResponse.cs 390 B

12345678910111213141516171819
  1. using System.IO;
  2. namespace MediaBrowser.Model.Lyrics;
  3. /// <summary>
  4. /// LyricResponse model.
  5. /// </summary>
  6. public class LyricResponse
  7. {
  8. /// <summary>
  9. /// Gets or sets the lyric stream.
  10. /// </summary>
  11. public required Stream Stream { get; set; }
  12. /// <summary>
  13. /// Gets or sets the lyric format.
  14. /// </summary>
  15. public required string Format { get; set; }
  16. }