mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
16 lines
342 B
C#
16 lines
342 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[Serializable]
|
|
public class CompletionAction {
|
|
public CompletionAction() { }
|
|
|
|
public CompletionAction(CompletionAction other) {
|
|
Transition = other.Transition;
|
|
}
|
|
|
|
[XmlElement(ElementName = "Transition")]
|
|
public StateTransition Transition;
|
|
}
|