aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorJQ <81431263+scampower3@users.noreply.github.com>2025-04-07 04:18:39 +0800
committerGitHub <noreply@github.com>2025-04-06 14:18:39 -0600
commitfe79384cd50584ffd55f494c8e88df59ca5acdc1 (patch)
tree876a39afd83cbb20a268dd3dfa33116122fb93be /MediaBrowser.Model
parent2c9c9f591dce26a420ded044a7c9a17ea373c5c9 (diff)
Returns album artists apart from artist names when doing a lyrics search (#13852)
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Lyrics/LyricSearchRequest.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Lyrics/LyricSearchRequest.cs b/MediaBrowser.Model/Lyrics/LyricSearchRequest.cs
index 48c442a55..67f3d7b42 100644
--- a/MediaBrowser.Model/Lyrics/LyricSearchRequest.cs
+++ b/MediaBrowser.Model/Lyrics/LyricSearchRequest.cs
@@ -15,7 +15,12 @@ public class LyricSearchRequest : IHasProviderIds
public string? MediaPath { get; set; }
/// <summary>
- /// Gets or sets the artist name.
+ /// Gets or sets the album artist names.
+ /// </summary>
+ public IReadOnlyList<string>? AlbumArtistsNames { get; set; }
+
+ /// <summary>
+ /// Gets or sets the artist names.
/// </summary>
public IReadOnlyList<string>? ArtistNames { get; set; }