mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			507 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			507 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Controller.Drawing;
 | |
| using System.IO;
 | |
| 
 | |
| namespace MediaBrowser.Controller.LiveTv
 | |
| {
 | |
|     public class StreamResponseInfo
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets the stream.
 | |
|         /// </summary>
 | |
|         /// <value>The stream.</value>
 | |
|         public Stream Stream { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the type of the MIME.
 | |
|         /// </summary>
 | |
|         /// <value>The type of the MIME.</value>
 | |
|         public ImageFormat Format { get; set; }
 | |
|     }
 | |
| }
 |