#nullable disable
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Entities
{
    public interface IHasMediaSources
    {
        Guid Id { get; set; }
        long? RunTimeTicks { get; set; }
        string Path { get; }
        /// 
        /// Gets the media sources.
        /// 
        /// true to enable path substitution, false to not.
        /// A list of media sources.
        IReadOnlyList GetMediaSources(bool enablePathSubstitution);
        IReadOnlyList GetMediaStreams();
    }
}