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
538 B
20 lines
538 B
using MediaBrowser.Controller.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Playback
|
|
{
|
|
/// <summary>
|
|
/// Class BaseIntroProvider
|
|
/// </summary>
|
|
public interface IIntroProvider
|
|
{
|
|
/// <summary>
|
|
/// Gets the intros.
|
|
/// </summary>
|
|
/// <param name="item">The item.</param>
|
|
/// <param name="user">The user.</param>
|
|
/// <returns>IEnumerable{System.String}.</returns>
|
|
IEnumerable<string> GetIntros(BaseItem item, User user);
|
|
}
|
|
}
|