Files
bluflame/intromat/Intromat/Nodes/Code/IntLiteralModel.cs
2026-04-18 22:31:51 +02:00

14 lines
348 B
C#

using System.Xml.Serialization;
using Intromat.ViewModels;
namespace Intromat.Nodes.Code
{
[XmlRoot("IntLiteral", Namespace = _namespace)]
public sealed class IntLiteralModel : LiteralModelBase<int>
{
public override CodeGenNodeViewModel CreateViewModel()
{
return new IntLiteralNode();
}
}
}