17 lines
610 B
C#
17 lines
610 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MediaBrowser.Controller.Channels
|
|||
|
{
|
|||
|
public interface IRequiresMediaInfoCallback
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets the channel item media information.
|
|||
|
/// </summary>
|
|||
|
/// <param name="id">The identifier.</param>
|
|||
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|||
|
/// <returns>Task{IEnumerable{ChannelMediaInfo}}.</returns>
|
|||
|
Task<IEnumerable<ChannelMediaInfo>> GetChannelItemMediaInfo(string id, CancellationToken cancellationToken);
|
|||
|
}
|
|||
|
}
|