System.ComponentModel.DataAnnotations.EditableAttribute
Indicates whether a data field is editable.
namespace System.ComponentModel.DataAnnotations
{
public sealed class EditableAttribute : Attribute
{
public bool AllowEdit { get; }
public bool AllowInitialValue { get; set; }
public EditableAttribute(bool allowEdit);
}
}