Server/Slions/Ear/ActionType.cs
author StephaneLenclud
Fri, 22 Jul 2016 18:19:49 +0200
changeset 209 fef4ca058087
permissions -rw-r--r--
Prototype for event and action framework.
StephaneLenclud@209
     1
//
StephaneLenclud@209
     2
StephaneLenclud@209
     3
StephaneLenclud@209
     4
using System.Runtime.Serialization;
StephaneLenclud@209
     5
using System.Threading;
StephaneLenclud@209
     6
StephaneLenclud@209
     7
namespace Slions.Ear
StephaneLenclud@209
     8
{
StephaneLenclud@209
     9
    [DataContract]
StephaneLenclud@209
    10
    abstract class ActionType
StephaneLenclud@209
    11
    {
StephaneLenclud@209
    12
        [DataMember]
StephaneLenclud@209
    13
        public string Name { get; protected set;  }
StephaneLenclud@209
    14
        [DataMember]
StephaneLenclud@209
    15
        public string Description { get; protected set; }
StephaneLenclud@209
    16
    }
StephaneLenclud@209
    17
StephaneLenclud@209
    18
StephaneLenclud@209
    19
}