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