author | Stephane Lenclud |
Sun, 31 Jul 2016 12:03:52 +0200 | |
changeset 230 | 8c5cf2228e9a |
parent 219 | 99c407831232 |
permissions | -rw-r--r-- |
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
7 namespace SharpLib.Ear
8 {
9 /// <summary>
10 /// To expose an action property thus enabling user to edit it.
11 /// </summary>
12 [System.AttributeUsage(System.AttributeTargets.Property)]
13 public class AttributeActionProperty : System.Attribute
14 {
15 public string Id;
16 public string Name;
17 public string Description;
18 // For numerics
19 public string Minimum;
20 public string Maximum;
21 public string Increment;
22 }
27 }