diff options
Diffstat (limited to 'MediaBrowser.Controller/Lyrics/LyricResponse.cs')
| -rw-r--r-- | MediaBrowser.Controller/Lyrics/LyricResponse.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Lyrics/LyricResponse.cs b/MediaBrowser.Controller/Lyrics/LyricResponse.cs index 56a569645..0d52b5ec5 100644 --- a/MediaBrowser.Controller/Lyrics/LyricResponse.cs +++ b/MediaBrowser.Controller/Lyrics/LyricResponse.cs @@ -9,12 +9,12 @@ namespace MediaBrowser.Controller.Lyrics; public class LyricResponse { /// <summary> - /// Gets or sets Metadata. + /// Gets or sets Metadata for the lyrics. /// </summary> public LyricMetadata Metadata { get; set; } = new(); /// <summary> - /// Gets or sets Lyrics. + /// Gets or sets a collection of individual lyric lines. /// </summary> public IReadOnlyList<LyricLine> Lyrics { get; set; } = Array.Empty<LyricLine>(); } |
