diff options
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs index da39b40ec..55a8be975 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs @@ -419,10 +419,27 @@ namespace Tango.PPC.Common public SMSNotificationSettings SMSNotificationSettings { get; set; } /// <summary> + /// Gets or sets a value indicating whether to enable the machine buzzer. + /// </summary> + public bool EnableBuzzer { get; set; } + + /// <summary> + /// Gets or sets the duration of the machine buzzer. + /// </summary> + public int BuzzerDuration { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether enable white thread skip. + /// </summary> + public bool EnableWhiteThreadSkip { get; set; } + + /// <summary> /// Initializes a new instance of the <see cref="PPCSettings"/> class. /// </summary> public PPCSettings() { + EnableWhiteThreadSkip = false; + BuzzerDuration = 30; EnableJerricanChangePopup = true; PowerSavingModeIdle = PowerSavingModes.Default; PowerSavingModePowerOff = PowerSavingModes.Maximum; |
