SharpLibEar/AttributeAction.cs
author StephaneLenclud
Sun, 24 Jul 2016 20:46:34 +0200
changeset 215 5de8f8eaaa54
child 219 99c407831232
permissions -rw-r--r--
Removing obsolete CEC options.
     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     // Multiuse attribute.
    11     [System.AttributeUsage(System.AttributeTargets.Class)]
    12     public class AttributeAction : System.Attribute
    13     {
    14         public string Id;
    15         public string Name;
    16         public string Description;
    17     }
    18 
    19 }