mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			449 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			449 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Dlna
 | 
						|
{
 | 
						|
    public class ControlRequest
 | 
						|
    {
 | 
						|
        public IDictionary<string, string> Headers { get; set; }
 | 
						|
 | 
						|
        public string InputXml { get; set; }
 | 
						|
 | 
						|
        public string TargetServerUuId { get; set; }
 | 
						|
 | 
						|
        public string RequestedUrl { get; set; }
 | 
						|
 | 
						|
        public ControlRequest()
 | 
						|
        {
 | 
						|
            Headers = new Dictionary<string, string>();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |