using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Scripting.Core; namespace Tango.Scripting.Core { public class ScriptBreakPoint { public IScriptSource Script { get; set; } public int LineNumber { get; set; } public int LineStartOffset { get; set; } public int LineEndOffset { get; set; } public List ContextSymbols { get; set; } public ScriptBreakPoint() { ContextSymbols = new List(); } } }