This commit is contained in:
shinichi
2020-10-07 13:17:40 +02:00
parent 71ff5dfc81
commit 6e2b3a80b3
17 changed files with 329 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
using ClientApp.Utils;
namespace ClientApp.ViewModels
{
class LoginViewModel : ObservableObject
{
}
}

View File

@@ -0,0 +1,18 @@
using ClientApp.Utils;
using System;
using System.Collections.Generic;
using System.Text;
namespace ClientApp.ViewModels
{
class MainViewModel : ObservableObject
{
public ObservableObject SelectedViewModel { get; set; }
public MainViewModel()
{
SelectedViewModel = new LoginViewModel();
}
}
}