aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ReserveCostTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/ReserveCostTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ReserveCostTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/ReserveCostTuple.cs b/src/WixToolset.Data/Tuples/ReserveCostTuple.cs
index 769ac4b2..8804cf3c 100644
--- a/src/WixToolset.Data/Tuples/ReserveCostTuple.cs
+++ b/src/WixToolset.Data/Tuples/ReserveCostTuple.cs
@@ -45,31 +45,31 @@ namespace WixToolset.Data.Tuples
45 45
46 public string ReserveKey 46 public string ReserveKey
47 { 47 {
48 get => (string)this.Fields[(int)ReserveCostTupleFields.ReserveKey]?.Value; 48 get => (string)this.Fields[(int)ReserveCostTupleFields.ReserveKey];
49 set => this.Set((int)ReserveCostTupleFields.ReserveKey, value); 49 set => this.Set((int)ReserveCostTupleFields.ReserveKey, value);
50 } 50 }
51 51
52 public string Component_ 52 public string Component_
53 { 53 {
54 get => (string)this.Fields[(int)ReserveCostTupleFields.Component_]?.Value; 54 get => (string)this.Fields[(int)ReserveCostTupleFields.Component_];
55 set => this.Set((int)ReserveCostTupleFields.Component_, value); 55 set => this.Set((int)ReserveCostTupleFields.Component_, value);
56 } 56 }
57 57
58 public string ReserveFolder 58 public string ReserveFolder
59 { 59 {
60 get => (string)this.Fields[(int)ReserveCostTupleFields.ReserveFolder]?.Value; 60 get => (string)this.Fields[(int)ReserveCostTupleFields.ReserveFolder];
61 set => this.Set((int)ReserveCostTupleFields.ReserveFolder, value); 61 set => this.Set((int)ReserveCostTupleFields.ReserveFolder, value);
62 } 62 }
63 63
64 public int ReserveLocal 64 public int ReserveLocal
65 { 65 {
66 get => (int)this.Fields[(int)ReserveCostTupleFields.ReserveLocal]?.Value; 66 get => (int)this.Fields[(int)ReserveCostTupleFields.ReserveLocal];
67 set => this.Set((int)ReserveCostTupleFields.ReserveLocal, value); 67 set => this.Set((int)ReserveCostTupleFields.ReserveLocal, value);
68 } 68 }
69 69
70 public int ReserveSource 70 public int ReserveSource
71 { 71 {
72 get => (int)this.Fields[(int)ReserveCostTupleFields.ReserveSource]?.Value; 72 get => (int)this.Fields[(int)ReserveCostTupleFields.ReserveSource];
73 set => this.Set((int)ReserveCostTupleFields.ReserveSource, value); 73 set => this.Set((int)ReserveCostTupleFields.ReserveSource, value);
74 } 74 }
75 } 75 }