aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Lyrics/LyricResponse.cs
diff options
context:
space:
mode:
author1hitsong <3330318+1hitsong@users.noreply.github.com>2022-09-21 17:49:28 -0400
committer1hitsong <3330318+1hitsong@users.noreply.github.com>2022-09-21 17:49:28 -0400
commit35399ce8fef0559f65bee4f519c582d192a04e52 (patch)
treee2dd15a87977acdee268b9eff396e7574f13dfe7 /MediaBrowser.Controller/Lyrics/LyricResponse.cs
parentb1771f07e92dd47f8e49c7f96f61b731d4a6065c (diff)
Update summaries, Use spans
Diffstat (limited to 'MediaBrowser.Controller/Lyrics/LyricResponse.cs')
-rw-r--r--MediaBrowser.Controller/Lyrics/LyricResponse.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Lyrics/LyricResponse.cs b/MediaBrowser.Controller/Lyrics/LyricResponse.cs
index 56a5696450..0d52b5ec50 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>();
}