StephaneLenclud@210: //
StephaneLenclud@210: 
StephaneLenclud@210: 
StephaneLenclud@210: using System.Runtime.Serialization;
StephaneLenclud@210: using System.Threading;
StephaneLenclud@210: 
StephaneLenclud@210: namespace SharpLib.Ear
StephaneLenclud@210: {
StephaneLenclud@210:     [DataContract]
StephaneLenclud@210:     public abstract class ActionType
StephaneLenclud@210:     {
StephaneLenclud@210:         [DataMember]
StephaneLenclud@210:         public string Name { get; protected set;  }
StephaneLenclud@210:         [DataMember]
StephaneLenclud@210:         public string Description { get; protected set; }
StephaneLenclud@210:     }
StephaneLenclud@210: 
StephaneLenclud@210: 
StephaneLenclud@210: }