mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-20 05:23:00 -05:00
12 lines
289 B
C#
12 lines
289 B
C#
using MediaBrowser.Controller.Persistence;
|
|
using MediaBrowser.Model.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
{
|
|
public interface IMediaSourceManager
|
|
{
|
|
IEnumerable<MediaStream> GetMediaStreams(MediaStreamQuery query);
|
|
}
|
|
}
|