2015-03-07 15:43:53 -07:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
2014-06-02 19:01:30 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
2016-02-20 16:06:57 -07:00
|
|
|
|
public interface IHasMediaSources : IHasUserData
|
2014-06-02 19:01:30 -07: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>
|
|
|
|
|
IEnumerable<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution);
|
|
|
|
|
}
|
|
|
|
|
}
|