mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			473 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			473 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using ServiceStack.Web;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Net
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Interface IHasResultFactory
 | |
|     /// Services that require a ResultFactory should implement this
 | |
|     /// </summary>
 | |
|     public interface IHasResultFactory : IRequiresRequest
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets the result factory.
 | |
|         /// </summary>
 | |
|         /// <value>The result factory.</value>
 | |
|         IHttpResultFactory ResultFactory { get; set; }
 | |
|     }
 | |
| }
 |