StephaneLenclud@210: using System; StephaneLenclud@210: using System.Collections.Generic; StephaneLenclud@210: using System.Linq; StephaneLenclud@210: using System.Text; StephaneLenclud@210: using System.Threading.Tasks; StephaneLenclud@210: StephaneLenclud@210: namespace SharpLib.Ear StephaneLenclud@210: { StephaneLenclud@210: StephaneLenclud@219: /// StephaneLenclud@219: /// For action class to define name and description. StephaneLenclud@219: /// StephaneLenclud@210: [System.AttributeUsage(System.AttributeTargets.Class)] StephaneLenclud@210: public class AttributeAction : System.Attribute StephaneLenclud@210: { StephaneLenclud@210: public string Id; StephaneLenclud@210: public string Name; StephaneLenclud@210: public string Description; StephaneLenclud@210: } StephaneLenclud@210: StephaneLenclud@219: StephaneLenclud@210: }