Updates to logging and v1.0.3 release.
This commit is contained in:
@@ -63,5 +63,19 @@ namespace BodyshopPartner.ViewModels
|
||||
get { return _appVersion; }
|
||||
set { SetProperty(ref _appVersion, value); }
|
||||
}
|
||||
|
||||
private bool _updateAvailable = false;
|
||||
public bool UpdateAvailable
|
||||
{
|
||||
get { return _updateAvailable; }
|
||||
set { SetProperty(ref _updateAvailable, value); }
|
||||
}
|
||||
|
||||
private int _updateProgress;
|
||||
public int UpdateProgress
|
||||
{
|
||||
get { return _updateProgress; }
|
||||
set { SetProperty(ref _updateProgress, value); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user