diff options
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs | 10 |
1 files changed, 10 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 55a8be975..d149fc16a 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs @@ -434,10 +434,20 @@ namespace Tango.PPC.Common public bool EnableWhiteThreadSkip { get; set; } /// <summary> + /// Gets or sets the production data start time. + /// </summary> + public int ProductionDataStartTimeHours { get; set; } + + public int ProductionDataRefreshRateSeconds { get; set; } + + + /// <summary> /// Initializes a new instance of the <see cref="PPCSettings"/> class. /// </summary> public PPCSettings() { + ProductionDataStartTimeHours = 6; + ProductionDataRefreshRateSeconds = 60; EnableWhiteThreadSkip = false; BuzzerDuration = 30; EnableJerricanChangePopup = true; |
