SharpLibEar/AttributeAction.cs
author StephaneLenclud
Wed, 27 Jul 2016 17:09:10 +0200
changeset 224 471cb4c8a09a
parent 210 83dd86e73448
permissions -rw-r--r--
Make sure action edit combo box for enums is long enough.
     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 
    10     /// <summary>
    11     /// For action class to define name and description.
    12     /// </summary>
    13     [System.AttributeUsage(System.AttributeTargets.Class)]
    14     public class AttributeAction : System.Attribute
    15     {
    16         public string Id;
    17         public string Name;
    18         public string Description;
    19     }
    20 
    21 
    22 }