From fe79384cd50584ffd55f494c8e88df59ca5acdc1 Mon Sep 17 00:00:00 2001 From: JQ <81431263+scampower3@users.noreply.github.com> Date: Mon, 7 Apr 2025 04:18:39 +0800 Subject: Returns album artists apart from artist names when doing a lyrics search (#13852) --- MediaBrowser.Model/Lyrics/LyricSearchRequest.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Model') 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; } /// - /// Gets or sets the artist name. + /// Gets or sets the album artist names. + /// + public IReadOnlyList? AlbumArtistsNames { get; set; } + + /// + /// Gets or sets the artist names. /// public IReadOnlyList? ArtistNames { get; set; } -- cgit v1.2.3