Merge pull request #1436 from esdrubal/readerwriterlockslim
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / HiddenInputAttribute.cs
1 namespace System.Web.Mvc {
2     using System;
3
4     [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
5     public sealed class HiddenInputAttribute : Attribute {
6         public HiddenInputAttribute() {
7             DisplayValue = true;
8         }
9
10         public bool DisplayValue { get; set; }
11     }
12 }