Basic implementation of updating which shop is active.

This commit is contained in:
Patrick Fic
2020-01-20 12:28:08 -08:00
parent 73a2cb4fcb
commit bc5cb13113
9 changed files with 299 additions and 12 deletions

View File

@@ -19,5 +19,27 @@ namespace BodyshopUploader.ViewModels
get { return _monitoringPaths; }
set { SetProperty(ref _monitoringPaths, value); }
}
private ObservableCollection<Bodyshop> _shopData;
public ObservableCollection<Bodyshop> ShopData
{
get { return _shopData; }
set { SetProperty(ref _shopData, value); }
}
private int _progress;
public int Progress
{
get { return _progress; }
set { SetProperty(ref _progress, value); }
}
private Bodyshop _activeShop;
public Bodyshop ActiveShop
{
get { return _activeShop; }
set { SetProperty(ref _activeShop, value); SetActiveBodyshop(value); }
}
}
}