aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixPropertyTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixPropertyTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixPropertyTuple.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/WixPropertyTuple.cs b/src/WixToolset.Data/Tuples/WixPropertyTuple.cs
index 74e17d18..2e2c96f8 100644
--- a/src/WixToolset.Data/Tuples/WixPropertyTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixPropertyTuple.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)WixPropertyTupleFields.Property_]?.Value; 46 get => (string)this.Fields[(int)WixPropertyTupleFields.Property_];
47 set => this.Set((int)WixPropertyTupleFields.Property_, value); 47 set => this.Set((int)WixPropertyTupleFields.Property_, value);
48 } 48 }
49 49
50 public bool Admin 50 public bool Admin
51 { 51 {
52 get => (bool)this.Fields[(int)WixPropertyTupleFields.Admin]?.Value; 52 get => (bool)this.Fields[(int)WixPropertyTupleFields.Admin];
53 set => this.Set((int)WixPropertyTupleFields.Admin, value); 53 set => this.Set((int)WixPropertyTupleFields.Admin, value);
54 } 54 }
55 55
56 public bool Hidden 56 public bool Hidden
57 { 57 {
58 get => (bool)this.Fields[(int)WixPropertyTupleFields.Hidden]?.Value; 58 get => (bool)this.Fields[(int)WixPropertyTupleFields.Hidden];
59 set => this.Set((int)WixPropertyTupleFields.Hidden, value); 59 set => this.Set((int)WixPropertyTupleFields.Hidden, value);
60 } 60 }
61 61
62 public bool Secure 62 public bool Secure
63 { 63 {
64 get => (bool)this.Fields[(int)WixPropertyTupleFields.Secure]?.Value; 64 get => (bool)this.Fields[(int)WixPropertyTupleFields.Secure];
65 set => this.Set((int)WixPropertyTupleFields.Secure, value); 65 set => this.Set((int)WixPropertyTupleFields.Secure, value);
66 } 66 }
67 } 67 }