SharpLibEar/AttributeAction.cs
author StephaneLenclud
Sat, 23 Jul 2016 16:00:04 +0200
changeset 210 83dd86e73448
child 219 99c407831232
permissions -rw-r--r--
Most basic event action manager.
StephaneLenclud@210
     1
using System;
StephaneLenclud@210
     2
using System.Collections.Generic;
StephaneLenclud@210
     3
using System.Linq;
StephaneLenclud@210
     4
using System.Text;
StephaneLenclud@210
     5
using System.Threading.Tasks;
StephaneLenclud@210
     6
StephaneLenclud@210
     7
namespace SharpLib.Ear
StephaneLenclud@210
     8
{
StephaneLenclud@210
     9
StephaneLenclud@210
    10
    // Multiuse attribute.
StephaneLenclud@210
    11
    [System.AttributeUsage(System.AttributeTargets.Class)]
StephaneLenclud@210
    12
    public class AttributeAction : System.Attribute
StephaneLenclud@210
    13
    {
StephaneLenclud@210
    14
        public string Id;
StephaneLenclud@210
    15
        public string Name;
StephaneLenclud@210
    16
        public string Description;
StephaneLenclud@210
    17
    }
StephaneLenclud@210
    18
StephaneLenclud@210
    19
}