16 lines
361 B
C#
16 lines
361 B
C#
using System;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
|
|
namespace Server_Dashboard {
|
|
/// <summary>
|
|
/// Interaction logic for LoginWindow.xaml
|
|
/// </summary>
|
|
public partial class LoginWindow : Window {
|
|
public LoginWindow() {
|
|
InitializeComponent();
|
|
DataContext = new LoginViewModel();
|
|
}
|
|
}
|
|
}
|