Set base utilities + login page. Creation of localization resources. General project info.

This commit is contained in:
Patrick Fic
2020-01-16 11:52:06 -08:00
parent 13c4edb151
commit e34ffebf53
23 changed files with 4235 additions and 62 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Windows.Input;
namespace BodyshopUploader.ViewModels
{
public partial class LoginViewModel : BaseViewModel
{
private ICommand _testCommand;
public ICommand TestCommand
{
get
{
if (_testCommand == null)
{
_testCommand = new RelayCommand(
p => true,
p => Console.WriteLine("Hi"));
}
return _testCommand;
}
}
}
}