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