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