value - eisclimber/ExPresS-XR GitHub Wiki
Property in BaseValueDescriptor<V>
Property for getting and setting the value. If you do not need to add custom attributes (like [Range(..)]) to your value field,
you can use BaseValueDescriptor , which has the property already set up.
Otherwise you'll need to implement it yourself, making sure to call the same functions as in BaseValueDescriptor ,
to ensure a correct behavior.
public override V Value { get; set; }