aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Statistics/App.xaml
blob: f34703f071f41acd53acdb6ddda0e693d15519b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Tango.Scripting.Core;

namespace Tango.Scripting.Editors
{
    public class BreakPointSymbolPressedEventArgs : EventArgs
    {
        public ScriptBreakPointSymbol BreakPointSymbol { get; set; }
        public Point Position { get; set; }
    }
}