using ICSharpCode.AvalonEdit.Document;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace LunarSF.SHomeWorkshop.LunarMarkdownEditor
{
    class TreeListTextLine
    {
        public DocumentLine Line { get; set; }
        public char[] HeaderTextArray { get; set; }
        public string TailText { get; set; }
        public string OldText { get; set; }
        public string NewText { get; set; }
        public int OldLevel { get; set; }
        public int NewLevel { get; set; }
    }
}