finish login window styling and added xaml event triggers to handle ui method calls
This commit is contained in:
15
Server Dashboard/ViewModels/LoginViewModel.cs
Normal file
15
Server Dashboard/ViewModels/LoginViewModel.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Server_Dashboard {
|
||||
class LoginViewModel {
|
||||
private string password;
|
||||
|
||||
public string Password {
|
||||
get { return password; }
|
||||
set { password = value; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user