1 namespace System.Web.Mvc {
2     public enum InputType {
3         CheckBox,
4         Hidden,
5         Password,
6         Radio,
7         Text
8     }
9 }
10