using System; using System.Collections.Generic; using System.Text; namespace Larkdown.Parser.Ast { public class Node { public string NodeType { get; } public Node(string type) { NodeType = type; } } }