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