diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ModuleComponentsTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/ModuleComponentsTuple.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/Tuples/ModuleComponentsTuple.cs b/src/WixToolset.Data/Tuples/ModuleComponentsTuple.cs index 24b9aab4..2b560b50 100644 --- a/src/WixToolset.Data/Tuples/ModuleComponentsTuple.cs +++ b/src/WixToolset.Data/Tuples/ModuleComponentsTuple.cs | |||
| @@ -41,19 +41,19 @@ namespace WixToolset.Data.Tuples | |||
| 41 | 41 | ||
| 42 | public string Component | 42 | public string Component |
| 43 | { | 43 | { |
| 44 | get => (string)this.Fields[(int)ModuleComponentsTupleFields.Component]?.Value; | 44 | get => (string)this.Fields[(int)ModuleComponentsTupleFields.Component]; |
| 45 | set => this.Set((int)ModuleComponentsTupleFields.Component, value); | 45 | set => this.Set((int)ModuleComponentsTupleFields.Component, value); |
| 46 | } | 46 | } |
| 47 | 47 | ||
| 48 | public string ModuleID | 48 | public string ModuleID |
| 49 | { | 49 | { |
| 50 | get => (string)this.Fields[(int)ModuleComponentsTupleFields.ModuleID]?.Value; | 50 | get => (string)this.Fields[(int)ModuleComponentsTupleFields.ModuleID]; |
| 51 | set => this.Set((int)ModuleComponentsTupleFields.ModuleID, value); | 51 | set => this.Set((int)ModuleComponentsTupleFields.ModuleID, value); |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | public int Language | 54 | public int Language |
| 55 | { | 55 | { |
| 56 | get => (int)this.Fields[(int)ModuleComponentsTupleFields.Language]?.Value; | 56 | get => (int)this.Fields[(int)ModuleComponentsTupleFields.Language]; |
| 57 | set => this.Set((int)ModuleComponentsTupleFields.Language, value); | 57 | set => this.Set((int)ModuleComponentsTupleFields.Language, value); |
| 58 | } | 58 | } |
| 59 | } | 59 | } |
