Basic implementation of updating which shop is active.
This commit is contained in:
@@ -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); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user