Files
linux-packaging-mono/mcs/class/System.Web.Mvc3/Mvc/HiddenInputAttribute.cs

13 lines
361 B
C#
Raw Normal View History

namespace System.Web.Mvc {
using System;
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public sealed class HiddenInputAttribute : Attribute {
public HiddenInputAttribute() {
DisplayValue = true;
}
public bool DisplayValue { get; set; }
}
}