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