using System; using System.Collections.Generic; using MediaBrowser.Model.Dto; using MediaBrowser.Model.Entities; namespace MediaBrowser.Controller.Entities { public interface IHasMediaSources { /// /// Gets the media sources. /// List GetMediaSources(bool enablePathSubstitution); List GetMediaStreams(); Guid Id { get; set; } long? RunTimeTicks { get; set; } string Path { get; } } }