Server/Slions/Ear/ActionType.cs
changeset 209 fef4ca058087
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Server/Slions/Ear/ActionType.cs	Fri Jul 22 18:19:49 2016 +0200
     1.3 @@ -0,0 +1,19 @@
     1.4 +//
     1.5 +
     1.6 +
     1.7 +using System.Runtime.Serialization;
     1.8 +using System.Threading;
     1.9 +
    1.10 +namespace Slions.Ear
    1.11 +{
    1.12 +    [DataContract]
    1.13 +    abstract class ActionType
    1.14 +    {
    1.15 +        [DataMember]
    1.16 +        public string Name { get; protected set;  }
    1.17 +        [DataMember]
    1.18 +        public string Description { get; protected set; }
    1.19 +    }
    1.20 +
    1.21 +
    1.22 +}
    1.23 \ No newline at end of file