aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/ODBCDriverTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ODBCDriverTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs b/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs
index ab40ee88..a35d62f4 100644
--- a/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs
+++ b/src/WixToolset.Data/Tuples/ODBCDriverTuple.cs
@@ -45,31 +45,31 @@ namespace WixToolset.Data.Tuples
45 45
46 public string Driver 46 public string Driver
47 { 47 {
48 get => (string)this.Fields[(int)ODBCDriverTupleFields.Driver]?.Value; 48 get => (string)this.Fields[(int)ODBCDriverTupleFields.Driver];
49 set => this.Set((int)ODBCDriverTupleFields.Driver, value); 49 set => this.Set((int)ODBCDriverTupleFields.Driver, value);
50 } 50 }
51 51
52 public string Component_ 52 public string Component_
53 { 53 {
54 get => (string)this.Fields[(int)ODBCDriverTupleFields.Component_]?.Value; 54 get => (string)this.Fields[(int)ODBCDriverTupleFields.Component_];
55 set => this.Set((int)ODBCDriverTupleFields.Component_, value); 55 set => this.Set((int)ODBCDriverTupleFields.Component_, value);
56 } 56 }
57 57
58 public string Description 58 public string Description
59 { 59 {
60 get => (string)this.Fields[(int)ODBCDriverTupleFields.Description]?.Value; 60 get => (string)this.Fields[(int)ODBCDriverTupleFields.Description];
61 set => this.Set((int)ODBCDriverTupleFields.Description, value); 61 set => this.Set((int)ODBCDriverTupleFields.Description, value);
62 } 62 }
63 63
64 public string File_ 64 public string File_
65 { 65 {
66 get => (string)this.Fields[(int)ODBCDriverTupleFields.File_]?.Value; 66 get => (string)this.Fields[(int)ODBCDriverTupleFields.File_];
67 set => this.Set((int)ODBCDriverTupleFields.File_, value); 67 set => this.Set((int)ODBCDriverTupleFields.File_, value);
68 } 68 }
69 69
70 public string File_Setup 70 public string File_Setup
71 { 71 {
72 get => (string)this.Fields[(int)ODBCDriverTupleFields.File_Setup]?.Value; 72 get => (string)this.Fields[(int)ODBCDriverTupleFields.File_Setup];
73 set => this.Set((int)ODBCDriverTupleFields.File_Setup, value); 73 set => this.Set((int)ODBCDriverTupleFields.File_Setup, value);
74 } 74 }
75 } 75 }