diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/EventMappingTuple.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/EventMappingTuple.cs b/src/WixToolset.Data/Tuples/EventMappingTuple.cs index e0e8da71..b83d5f4e 100644 --- a/src/WixToolset.Data/Tuples/EventMappingTuple.cs +++ b/src/WixToolset.Data/Tuples/EventMappingTuple.cs | |||
@@ -43,25 +43,25 @@ namespace WixToolset.Data.Tuples | |||
43 | 43 | ||
44 | public string Dialog_ | 44 | public string Dialog_ |
45 | { | 45 | { |
46 | get => (string)this.Fields[(int)EventMappingTupleFields.Dialog_]?.Value; | 46 | get => (string)this.Fields[(int)EventMappingTupleFields.Dialog_]; |
47 | set => this.Set((int)EventMappingTupleFields.Dialog_, value); | 47 | set => this.Set((int)EventMappingTupleFields.Dialog_, value); |
48 | } | 48 | } |
49 | 49 | ||
50 | public string Control_ | 50 | public string Control_ |
51 | { | 51 | { |
52 | get => (string)this.Fields[(int)EventMappingTupleFields.Control_]?.Value; | 52 | get => (string)this.Fields[(int)EventMappingTupleFields.Control_]; |
53 | set => this.Set((int)EventMappingTupleFields.Control_, value); | 53 | set => this.Set((int)EventMappingTupleFields.Control_, value); |
54 | } | 54 | } |
55 | 55 | ||
56 | public string Event | 56 | public string Event |
57 | { | 57 | { |
58 | get => (string)this.Fields[(int)EventMappingTupleFields.Event]?.Value; | 58 | get => (string)this.Fields[(int)EventMappingTupleFields.Event]; |
59 | set => this.Set((int)EventMappingTupleFields.Event, value); | 59 | set => this.Set((int)EventMappingTupleFields.Event, value); |
60 | } | 60 | } |
61 | 61 | ||
62 | public string Attribute | 62 | public string Attribute |
63 | { | 63 | { |
64 | get => (string)this.Fields[(int)EventMappingTupleFields.Attribute]?.Value; | 64 | get => (string)this.Fields[(int)EventMappingTupleFields.Attribute]; |
65 | set => this.Set((int)EventMappingTupleFields.Attribute, value); | 65 | set => this.Set((int)EventMappingTupleFields.Attribute, value); |
66 | } | 66 | } |
67 | } | 67 | } |