You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
516 B
20 lines
516 B
using MediaBrowser.Model.Dto;
|
|
using System.Collections.Generic;
|
|
using MediaBrowser.Model.Entities;
|
|
using System;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public interface IHasMediaSources
|
|
{
|
|
/// <summary>
|
|
/// Gets the media sources.
|
|
/// </summary>
|
|
List<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution);
|
|
List<MediaStream> GetMediaStreams();
|
|
Guid Id { get; set; }
|
|
long? RunTimeTicks { get; set; }
|
|
string Path { get; }
|
|
}
|
|
}
|