aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/CheckBoxTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/CheckBoxTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/CheckBoxTuple.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/CheckBoxTuple.cs b/src/WixToolset.Data/Tuples/CheckBoxTuple.cs
index d76609f2..b35ff1f0 100644
--- a/src/WixToolset.Data/Tuples/CheckBoxTuple.cs
+++ b/src/WixToolset.Data/Tuples/CheckBoxTuple.cs
@@ -39,13 +39,13 @@ namespace WixToolset.Data.Tuples
39 39
40 public string Property 40 public string Property
41 { 41 {
42 get => (string)this.Fields[(int)CheckBoxTupleFields.Property]?.Value; 42 get => (string)this.Fields[(int)CheckBoxTupleFields.Property];
43 set => this.Set((int)CheckBoxTupleFields.Property, value); 43 set => this.Set((int)CheckBoxTupleFields.Property, value);
44 } 44 }
45 45
46 public string Value 46 public string Value
47 { 47 {
48 get => (string)this.Fields[(int)CheckBoxTupleFields.Value]?.Value; 48 get => (string)this.Fields[(int)CheckBoxTupleFields.Value];
49 set => this.Set((int)CheckBoxTupleFields.Value, value); 49 set => this.Set((int)CheckBoxTupleFields.Value, value);
50 } 50 }
51 } 51 }