mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-10 00:02:56 +01:00
removed server reference from ui solution
This commit is contained in:
19
MediaBrowser.Controller/Playback/IIntroProvider.cs
Normal file
19
MediaBrowser.Controller/Playback/IIntroProvider.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user