SharpLibEar/AttributeAction.cs
author StephaneLenclud
Sat, 23 Jul 2016 19:22:56 +0200
changeset 211 96f8b4dc4300
child 219 99c407831232
permissions -rw-r--r--
Adding Events tab.
     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 }