17 lines
342 B
Plaintext
17 lines
342 B
Plaintext
|
|
using System.Windows.Controls;
|
||
|
|
using DTS.Common.Interface;
|
||
|
|
|
||
|
|
namespace DTS.Viewer
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Interaction logic for MainViewLite.xaml
|
||
|
|
/// </summary>
|
||
|
|
public partial class MainViewLite : IMainViewerView
|
||
|
|
{
|
||
|
|
public MainViewLite()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|