Files
YesNt-Interpreter/YesNt.Interpreter/Runtime/DebugEventArgs.cs
T

12 lines
346 B
C#

using System;
namespace YesNt.Interpreter.Runtime;
public class DebugEventArgs : EventArgs
{
public int LineNumber { get; internal set; }
public string CurrentLine { get; internal set; }
public string OriginalLine { get; internal set; }
public int TaskId { get; internal set; }
public bool IsTask { get; internal set; }
}