aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IMediaSourceManager.cs
blob: 4378bc85d9b434e035b8e0247ca2e748adcd5a74 (plain)
1
2
3
4
5
6
7
8
9
10
11
using MediaBrowser.Controller.Persistence;
using MediaBrowser.Model.Entities;
using System.Collections.Generic;

namespace MediaBrowser.Controller.Library
{
    public interface IMediaSourceManager
    {
        IEnumerable<MediaStream> GetMediaStreams(MediaStreamQuery query);
    }
}