jellyfin/MediaBrowser.Controller/Library/IIntroProvider.cs

33 lines
902 B
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities;
using System.Collections.Generic;
2014-09-22 23:56:54 +02:00
using System.Threading.Tasks;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Controller.Library
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Class BaseIntroProvider
/// </summary>
public interface IIntroProvider
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets the intros.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="user">The user.</param>
/// <returns>IEnumerable{System.String}.</returns>
2014-09-22 23:56:54 +02:00
Task<IEnumerable<IntroInfo>> GetIntros(BaseItem item, User user);
2013-10-04 17:22:03 +02:00
/// <summary>
/// Gets all intro files.
2013-10-04 17:22:03 +02:00
/// </summary>
/// <returns>IEnumerable{System.String}.</returns>
IEnumerable<string> GetAllIntroFiles();
2014-09-22 23:56:54 +02:00
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
string Name { get; }
}
2013-02-21 02:33:05 +01:00
}