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