author | StephaneLenclud |
Sun, 21 Aug 2016 19:31:08 +0200 | |
changeset 251 | f60cfcb98c9a |
permissions | -rw-r--r-- |
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 |
} |