Added main page + started notify icon implementation.

This commit is contained in:
Patrick Fic
2020-01-16 14:37:05 -08:00
parent e34ffebf53
commit 0daf17a3f0
9 changed files with 166 additions and 9 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BodyshopUploader.ViewModels
{
public partial class MainViewModel : BaseViewModel
{
private int _progress = 5;
public int Progress
{
get { return _progress; }
set { SetProperty(ref _progress, value); }
}
}
}