17 lines
339 B
C#
17 lines
339 B
C#
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();
|
|
}
|
|
}
|
|
}
|