Node.cs 226 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Larkdown.Parser.Ast
  5. {
  6. public class Node
  7. {
  8. public string NodeType { get; }
  9. public Node(string type)
  10. {
  11. NodeType = type;
  12. }
  13. }
  14. }