SharpLibEar/ActionType.cs
author Stephane Lenclud
Sun, 31 Jul 2016 12:03:52 +0200
changeset 230 8c5cf2228e9a
permissions -rw-r--r--
Published v0.10.2.0.
StephaneLenclud@210
     1
//
StephaneLenclud@210
     2
StephaneLenclud@210
     3
StephaneLenclud@210
     4
using System.Runtime.Serialization;
StephaneLenclud@210
     5
using System.Threading;
StephaneLenclud@210
     6
StephaneLenclud@210
     7
namespace SharpLib.Ear
StephaneLenclud@210
     8
{
StephaneLenclud@210
     9
    [DataContract]
StephaneLenclud@210
    10
    public abstract class ActionType
StephaneLenclud@210
    11
    {
StephaneLenclud@210
    12
        [DataMember]
StephaneLenclud@210
    13
        public string Name { get; protected set;  }
StephaneLenclud@210
    14
        [DataMember]
StephaneLenclud@210
    15
        public string Description { get; protected set; }
StephaneLenclud@210
    16
    }
StephaneLenclud@210
    17
StephaneLenclud@210
    18
StephaneLenclud@210
    19
}