Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Library/IIntroProvider.cs

33 lines
902 B
C#
Raw Normal View History

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