aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/ServiceConfigTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/ServiceConfigTuple.cs')
-rw-r--r--src/wixext/Tuples/ServiceConfigTuple.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wixext/Tuples/ServiceConfigTuple.cs b/src/wixext/Tuples/ServiceConfigTuple.cs
index e5fc3992..714396bc 100644
--- a/src/wixext/Tuples/ServiceConfigTuple.cs
+++ b/src/wixext/Tuples/ServiceConfigTuple.cs
@@ -92,15 +92,15 @@ namespace WixToolset.Util.Tuples
92 set => this.Set((int)ServiceConfigTupleFields.ThirdFailureActionType, value); 92 set => this.Set((int)ServiceConfigTupleFields.ThirdFailureActionType, value);
93 } 93 }
94 94
95 public int ResetPeriodInDays 95 public int? ResetPeriodInDays
96 { 96 {
97 get => this.Fields[(int)ServiceConfigTupleFields.ResetPeriodInDays].AsNumber(); 97 get => this.Fields[(int)ServiceConfigTupleFields.ResetPeriodInDays].AsNullableNumber();
98 set => this.Set((int)ServiceConfigTupleFields.ResetPeriodInDays, value); 98 set => this.Set((int)ServiceConfigTupleFields.ResetPeriodInDays, value);
99 } 99 }
100 100
101 public int RestartServiceDelayInSeconds 101 public int? RestartServiceDelayInSeconds
102 { 102 {
103 get => this.Fields[(int)ServiceConfigTupleFields.RestartServiceDelayInSeconds].AsNumber(); 103 get => this.Fields[(int)ServiceConfigTupleFields.RestartServiceDelayInSeconds].AsNullableNumber();
104 set => this.Set((int)ServiceConfigTupleFields.RestartServiceDelayInSeconds, value); 104 set => this.Set((int)ServiceConfigTupleFields.RestartServiceDelayInSeconds, value);
105 } 105 }
106 106