jellyfin/MediaBrowser.Controller/Library/IIntroProvider.cs

42 lines
1.1 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities;
using System;
2013-02-21 02:33:05 +01:00
using System.Collections.Generic;
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>
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();
}
public class IntroInfo
{
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
public string Path { get; set; }
/// <summary>
/// Gets or sets the item id.
/// </summary>
/// <value>The item id.</value>
public Guid? ItemId { get; set; }
2013-02-21 02:33:05 +01:00
}
}