mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03: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);
|
|||
|
|
}
|
|||
|
|
}
|