using System; using System.Collections.Generic; using System.Text; namespace Larkdown.Parser.Lexer { class BlockToken { public BlockTokenType Type { get; } public int Indentation { get; } public string Content { get; } public BlockToken(BlockTokenType type, int indent, string content) { Type = type; Indentation = indent; Content = content; } } }