1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 using System;
6 
7 namespace System.Net
8 {
9     internal static class HttpVersionInternal
10     {
11         public static readonly Version Unknown = new Version(0, 0);
12         public static readonly Version Version10 = new Version(1, 0);
13         public static readonly Version Version11 = new Version(1, 1);
14         public static readonly Version Version20 = new Version(2, 0);
15     }
16 }
17