Update MediaBrowser.Controller/Lyrics/LyricResponse.cs

Co-authored-by: Niels van Velzen <nielsvanvelzen@users.noreply.github.com>
This commit is contained in:
1hitsong 2022-09-18 14:53:36 -04:00 committed by GitHub
parent dce81d8818
commit dddebec794
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,5 +15,5 @@ public class LyricResponse
/// <summary>
/// Gets or sets Lyrics.
/// </summary>
public IEnumerable<Lyric>? Lyrics { get; set; }
public IEnumerable<Lyric> Lyrics { get; set; }
}