In our code we have a ViewModel object that has a decorator as follows:
[Editable(true)]
public double Price { get; set; }
Does this decorator actually do anything? It seems like it is editable regardless.
I found the documentation here: https://msdn.microsoft.com/en-us/library/system.componentmodel.dataannotations.editableattribute%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
But it really doesn't help much with usage as it has bad descriptions and no examples.