mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 10:58:58 -07:00
14 lines
368 B
C#
14 lines
368 B
C#
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Library;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
{
|
|
public interface IUserViewManager
|
|
{
|
|
Task<IEnumerable<Folder>> GetUserViews(UserViewQuery query, CancellationToken cancellationToken);
|
|
}
|
|
}
|