aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ComboBoxTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/ComboBoxTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ComboBoxTuple.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/ComboBoxTuple.cs b/src/WixToolset.Data/Tuples/ComboBoxTuple.cs
index 67acc30c..f3629c5f 100644
--- a/src/WixToolset.Data/Tuples/ComboBoxTuple.cs
+++ b/src/WixToolset.Data/Tuples/ComboBoxTuple.cs
@@ -43,25 +43,25 @@ namespace WixToolset.Data.Tuples
43 43
44 public string Property 44 public string Property
45 { 45 {
46 get => (string)this.Fields[(int)ComboBoxTupleFields.Property]?.Value; 46 get => (string)this.Fields[(int)ComboBoxTupleFields.Property];
47 set => this.Set((int)ComboBoxTupleFields.Property, value); 47 set => this.Set((int)ComboBoxTupleFields.Property, value);
48 } 48 }
49 49
50 public int Order 50 public int Order
51 { 51 {
52 get => (int)this.Fields[(int)ComboBoxTupleFields.Order]?.Value; 52 get => (int)this.Fields[(int)ComboBoxTupleFields.Order];
53 set => this.Set((int)ComboBoxTupleFields.Order, value); 53 set => this.Set((int)ComboBoxTupleFields.Order, value);
54 } 54 }
55 55
56 public string Value 56 public string Value
57 { 57 {
58 get => (string)this.Fields[(int)ComboBoxTupleFields.Value]?.Value; 58 get => (string)this.Fields[(int)ComboBoxTupleFields.Value];
59 set => this.Set((int)ComboBoxTupleFields.Value, value); 59 set => this.Set((int)ComboBoxTupleFields.Value, value);
60 } 60 }
61 61
62 public string Text 62 public string Text
63 { 63 {
64 get => (string)this.Fields[(int)ComboBoxTupleFields.Text]?.Value; 64 get => (string)this.Fields[(int)ComboBoxTupleFields.Text];
65 set => this.Set((int)ComboBoxTupleFields.Text, value); 65 set => this.Set((int)ComboBoxTupleFields.Text, value);
66 } 66 }
67 } 67 }