diff -r 8c5cf2228e9a -r 4c706feaf706 SharpLibEar/AttributeObjectProperty.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SharpLibEar/AttributeObjectProperty.cs Fri Aug 12 20:25:05 2016 +0200 @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace SharpLib.Ear +{ + /// + /// To expose an action property thus enabling user to edit it. + /// + [System.AttributeUsage(System.AttributeTargets.Property)] + public class AttributeObjectProperty : System.Attribute + { + public string Id; + public string Name; + public string Description; + // For numerics + public string Minimum; + public string Maximum; + public string Increment; + } + + + + +}