2015-03-07 22:43:53 +00:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
2014-06-03 02:01:30 +00:00
|
|
|
|
using System.Collections.Generic;
|
2017-08-05 19:02:33 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-06-03 02:01:30 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
2017-08-23 19:45:52 +00:00
|
|
|
|
public interface IHasMediaSources : IHasMetadata
|
2014-06-03 02:01:30 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the media sources.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="enablePathSubstitution">if set to <c>true</c> [enable path substitution].</param>
|
|
|
|
|
/// <returns>Task{IEnumerable{MediaSourceInfo}}.</returns>
|
2017-08-05 19:02:33 +00:00
|
|
|
|
List<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution);
|
|
|
|
|
List<MediaStream> GetMediaStreams();
|
2014-06-03 02:01:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|