port from perforce
This commit is contained in:
17
intromat/Intromat/Nodes/Code/PrintModel.cs
Normal file
17
intromat/Intromat/Nodes/Code/PrintModel.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Xml.Serialization;
|
||||
using Intromat.PersistentModel;
|
||||
using Intromat.ViewModels;
|
||||
|
||||
namespace Intromat.Nodes.Code
|
||||
{
|
||||
[XmlRoot("Print", Namespace = _namespace)]
|
||||
public sealed class PrintModel : NodeModelBase
|
||||
{
|
||||
public string? Text { get; set; }
|
||||
|
||||
public override CodeGenNodeViewModel CreateViewModel()
|
||||
{
|
||||
return new PrintNode();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user