RemoteLyricInfoDto.cs 497 B

12345678910111213141516171819202122
  1. namespace MediaBrowser.Model.Lyrics;
  2. /// <summary>
  3. /// The remote lyric info dto.
  4. /// </summary>
  5. public class RemoteLyricInfoDto
  6. {
  7. /// <summary>
  8. /// Gets or sets the id for the lyric.
  9. /// </summary>
  10. public required string Id { get; set; }
  11. /// <summary>
  12. /// Gets the provider name.
  13. /// </summary>
  14. public required string ProviderName { get; init; }
  15. /// <summary>
  16. /// Gets the lyrics.
  17. /// </summary>
  18. public required LyricDto Lyrics { get; init; }
  19. }