17 lines
339 B
Plaintext
17 lines
339 B
Plaintext
|
|
using DTS.Common.Interface;
|
||
|
|
// ReSharper disable CheckNamespace
|
||
|
|
|
||
|
|
namespace DTS.Viewer.Graph
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Interaction logic for GraphView.xaml
|
||
|
|
/// </summary>
|
||
|
|
public partial class GraphView : IGraphView
|
||
|
|
{
|
||
|
|
public GraphView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|