blob: 8da35fe5590862e2bfac785ab39dc339c98ef4d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Scripting.Core
{
public class ScriptBreakPointSymbol
{
public String Name { get; set; }
public int Offset { get; set; }
public int Length { get; set; }
public Object SymbolObject { get; set; }
}
}
|