SharpLibEar/AttributeAction.cs
author StephaneLenclud
Fri, 29 Jul 2016 10:40:15 +0200
changeset 226 91763ba41c0c
parent 210 83dd86e73448
permissions -rw-r--r--
Renaming main form.
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@219
    10
    /// <summary>
StephaneLenclud@219
    11
    /// For action class to define name and description.
StephaneLenclud@219
    12
    /// </summary>
StephaneLenclud@210
    13
    [System.AttributeUsage(System.AttributeTargets.Class)]
StephaneLenclud@210
    14
    public class AttributeAction : System.Attribute
StephaneLenclud@210
    15
    {
StephaneLenclud@210
    16
        public string Id;
StephaneLenclud@210
    17
        public string Name;
StephaneLenclud@210
    18
        public string Description;
StephaneLenclud@210
    19
    }
StephaneLenclud@210
    20
StephaneLenclud@219
    21
StephaneLenclud@210
    22
}