SharpLibEar/ActionType.cs
author StephaneLenclud
Thu, 18 Aug 2016 17:13:21 +0200
changeset 239 dd7770b97916
permissions -rw-r--r--
Improved object editor dialog validation.
Added EAR support for object validation.
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
}