2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-07-02 00:43:42 -04:00

New feature: Monitor on start (#42)

* Implement monitor on start

* finish implementation of monitor on start
This commit is contained in:
Xjph
2021-12-18 12:21:07 -03:30
committed by GitHub
parent d3315c5c65
commit 889825275d
5 changed files with 39 additions and 3 deletions

View File

@ -238,5 +238,17 @@ namespace Observatory.Properties {
this["NativeNotifyTimeout"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool StartMonitor {
get {
return ((bool)(this["StartMonitor"]));
}
set {
this["StartMonitor"] = value;
}
}
}
}