Create ability to launch connecting to use using 'test' launch param
This commit is contained in:
@@ -31,6 +31,8 @@ namespace BodyshopPartner.ViewModels
|
||||
set { SetProperty(ref _error, value); }
|
||||
}
|
||||
|
||||
|
||||
|
||||
private string _errorMsg;
|
||||
public string ErrorMsg
|
||||
{
|
||||
|
||||
@@ -15,6 +15,13 @@ namespace BodyshopPartner.ViewModels
|
||||
public GrowlNotification Growler;
|
||||
private System.Timers.Timer _updateCheckTimer = new System.Timers.Timer(60 * 1000 * 60);
|
||||
|
||||
private bool _testMode = Utils.AppMetaData.IsTest; // Set upon app init.
|
||||
public bool TestMode
|
||||
{
|
||||
get { return _testMode; }
|
||||
set { SetProperty(ref _testMode, value); }
|
||||
}
|
||||
|
||||
private ObservableCollection<Monitor> _monitoringPaths = new ObservableCollection<Monitor>();
|
||||
public ObservableCollection<Monitor> MonitoringPaths
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user