15 lines
379 B
C#
15 lines
379 B
C#
using System.Xml.Serialization;
|
|
using Intromat.PersistentModel;
|
|
using Intromat.ViewModels;
|
|
|
|
namespace Intromat.Nodes
|
|
{
|
|
[XmlRoot("MainEntryPoint", Namespace = _namespace)]
|
|
public sealed class MainEntryPointModel : NodeModelBase
|
|
{
|
|
public override CodeGenNodeViewModel CreateViewModel()
|
|
{
|
|
return new MainEntryPointNode();
|
|
}
|
|
}
|
|
} |