using MediaBrowser.Model.Dto;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
    public interface IHasMediaSources : IHasId
    {
        /// 
        /// Gets the media sources.
        /// 
        /// if set to true [enable path substitution].
        /// Task{IEnumerable{MediaSourceInfo}}.
        IEnumerable GetMediaSources(bool enablePathSubstitution);
    }
}