aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ODBCAttributeTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/Tuples/ODBCAttributeTuple.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/Tuples/ODBCAttributeTuple.cs b/src/WixToolset.Data/Tuples/ODBCAttributeTuple.cs
index de4f88cd..293d5a62 100644
--- a/src/WixToolset.Data/Tuples/ODBCAttributeTuple.cs
+++ b/src/WixToolset.Data/Tuples/ODBCAttributeTuple.cs
@@ -41,19 +41,19 @@ namespace WixToolset.Data.Tuples
41 41
42 public string Driver_ 42 public string Driver_
43 { 43 {
44 get => (string)this.Fields[(int)ODBCAttributeTupleFields.Driver_]?.Value; 44 get => (string)this.Fields[(int)ODBCAttributeTupleFields.Driver_];
45 set => this.Set((int)ODBCAttributeTupleFields.Driver_, value); 45 set => this.Set((int)ODBCAttributeTupleFields.Driver_, value);
46 } 46 }
47 47
48 public string Attribute 48 public string Attribute
49 { 49 {
50 get => (string)this.Fields[(int)ODBCAttributeTupleFields.Attribute]?.Value; 50 get => (string)this.Fields[(int)ODBCAttributeTupleFields.Attribute];
51 set => this.Set((int)ODBCAttributeTupleFields.Attribute, value); 51 set => this.Set((int)ODBCAttributeTupleFields.Attribute, value);
52 } 52 }
53 53
54 public string Value 54 public string Value
55 { 55 {
56 get => (string)this.Fields[(int)ODBCAttributeTupleFields.Value]?.Value; 56 get => (string)this.Fields[(int)ODBCAttributeTupleFields.Value];
57 set => this.Set((int)ODBCAttributeTupleFields.Value, value); 57 set => this.Set((int)ODBCAttributeTupleFields.Value, value);
58 } 58 }
59 } 59 }