SharpLibEar/AttributeAction.cs
author StephaneLenclud
Sun, 24 Jul 2016 20:36:07 +0200
changeset 214 4961ede27e0a
child 219 99c407831232
permissions -rw-r--r--
Adding a bunch of CEC actions.
     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 }