using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Ink; namespace WpfSketch { public enum StrokesHistoryNodeType { Removed, Added } internal class StrokesHistoryNode { public StrokeCollection Strokes { get; private set; } public StrokesHistoryNodeType Type { get; private set; } /// /// Initializes a new instance of the class. /// /// The strokes. /// The type. public StrokesHistoryNode(StrokeCollection strokes, StrokesHistoryNodeType type) { Strokes = strokes; Type = type; } } }