1 // Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
2 
3 namespace Microsoft.Web.Mvc.Controls
4 {
5     public class Hidden : MvcInputControl
6     {
Hidden()7         public Hidden()
8             : base("hidden")
9         {
10         }
11     }
12 }
13