mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 08:23:28 -03:00
Returns album artists apart from artist names when doing a lyrics search (#13852)
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user