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