mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 10:04:44 +01:00
factor collection type in resolving process
This commit is contained in:
@@ -240,6 +240,22 @@ namespace MediaBrowser.Model.ApiClient
|
||||
/// <exception cref="ArgumentNullException">userId</exception>
|
||||
Task<BaseItemDto> GetGenreAsync(string name, string userId);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the music genre async.
|
||||
/// </summary>
|
||||
/// <param name="name">The name.</param>
|
||||
/// <param name="userId">The user id.</param>
|
||||
/// <returns>Task{BaseItemDto}.</returns>
|
||||
Task<BaseItemDto> GetMusicGenreAsync(string name, string userId);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the game genre async.
|
||||
/// </summary>
|
||||
/// <param name="name">The name.</param>
|
||||
/// <param name="userId">The user id.</param>
|
||||
/// <returns>Task{BaseItemDto}.</returns>
|
||||
Task<BaseItemDto> GetGameGenreAsync(string name, string userId);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the artist async.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user