16 lines
292 B
C#
16 lines
292 B
C#
|
|
using DTS.Common.Interface;
|
|||
|
|
|
|||
|
|
namespace DTS.Viewer
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Interaction logic for MenuView.xaml
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class MenuView : IMenuView
|
|||
|
|
{
|
|||
|
|
public MenuView()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|