19 lines
295 B
C#
19 lines
295 B
C#
using System;
|
|
|
|
namespace Convention.Workflow
|
|
{
|
|
[Serializable, ArgPackage]
|
|
public class StartNodeInfo : NodeInfo
|
|
{
|
|
protected override NodeInfo CreateTemplate()
|
|
{
|
|
return new StartNodeInfo();
|
|
}
|
|
}
|
|
|
|
public class StartNode : Node
|
|
{
|
|
|
|
}
|
|
}
|