namespace TLang.Parser { public class StringNode : Node { public string Text {get;set;} public StringNode(string text) { Text = text; } } }