diff -r 6cd9ffdd6386 -r fef4ca058087 Server/Slions/Ear/ActionType.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Server/Slions/Ear/ActionType.cs Fri Jul 22 18:19:49 2016 +0200 @@ -0,0 +1,19 @@ +// + + +using System.Runtime.Serialization; +using System.Threading; + +namespace Slions.Ear +{ + [DataContract] + abstract class ActionType + { + [DataMember] + public string Name { get; protected set; } + [DataMember] + public string Description { get; protected set; } + } + + +} \ No newline at end of file