mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			283 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			283 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#pragma warning disable CS1591
 | 
						|
 | 
						|
using System.IO;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Services
 | 
						|
{
 | 
						|
    public interface IRequiresRequestStream
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// The raw Http Request Input Stream.
 | 
						|
        /// </summary>
 | 
						|
        Stream RequestStream { get; set; }
 | 
						|
    }
 | 
						|
}
 |