BlockNode.cs 272 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Larkdown.Parser.Ast
  5. {
  6. public abstract class BlockNode : Node
  7. {
  8. public int Indent { get; }
  9. protected BlockNode(string type, int indent)
  10. : base(type)
  11. {
  12. Indent = indent;
  13. }
  14. }
  15. }