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