SharpLibEar/AttributeActionProperty.cs
author StephaneLenclud
Thu, 28 Jul 2016 19:32:40 +0200
changeset 225 6ccaa430aa23
parent 219 99c407831232
permissions -rw-r--r--
Adding support for Display Messages.
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Linq;
     4 using System.Text;
     5 using System.Threading.Tasks;
     6 
     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     }
    23 
    24 
    25 
    26 
    27 }