mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			472 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			472 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| using System.Collections.Generic;
 | |
| using System.Threading;
 | |
| using System.Threading.Tasks;
 | |
| using MediaBrowser.Model.Dto;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Channels
 | |
| {
 | |
|     public interface IRequiresMediaInfoCallback
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the channel item media information.
 | |
|         /// </summary>
 | |
|         Task<IEnumerable<MediaSourceInfo>> GetChannelItemMediaInfo(string id, CancellationToken cancellationToken);
 | |
|     }
 | |
| }
 |