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