using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Channels
{
    public interface IRequiresMediaInfoCallback
    {
        /// 
        /// Gets the channel item media information.
        /// 
        /// The identifier.
        /// The cancellation token.
        /// Task{IEnumerable{ChannelMediaInfo}}.
        Task> GetChannelItemMediaInfo(string id, CancellationToken cancellationToken);
    }
}