mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			331 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			331 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace SocketHttpListener.Net
 | 
						|
{
 | 
						|
    // <remarks>
 | 
						|
    // </remarks>
 | 
						|
    public class HttpVersion
 | 
						|
    {
 | 
						|
 | 
						|
        public static readonly Version Version10 = new Version(1, 0);
 | 
						|
        public static readonly Version Version11 = new Version(1, 1);
 | 
						|
 | 
						|
        // pretty useless..
 | 
						|
        public HttpVersion() { }
 | 
						|
    }
 | 
						|
}
 |