aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IUserViewManager.cs
blob: 7c352d97a743a2b6e874100f1f4a4a2a585a9174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
    }
}