16 lines
316 B
C#
16 lines
316 B
C#
|
|
using DTS.Common.Interface;
|
|||
|
|
|
|||
|
|
namespace UISettings
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Interaction logic for UISettingsView.xaml
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class UISettingsView : IUISettingsView
|
|||
|
|
{
|
|||
|
|
public UISettingsView()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|