aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/MsiPatchMetadataTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/MsiPatchMetadataTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/MsiPatchMetadataTuple.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiPatchMetadataTuple.cs b/src/WixToolset.Data/Tuples/MsiPatchMetadataTuple.cs
index f6a6fd7d..91bdb6fd 100644
--- a/src/WixToolset.Data/Tuples/MsiPatchMetadataTuple.cs
+++ b/src/WixToolset.Data/Tuples/MsiPatchMetadataTuple.cs
@@ -41,19 +41,19 @@ namespace WixToolset.Data.Tuples
41 41
42 public string Company 42 public string Company
43 { 43 {
44 get => (string)this.Fields[(int)MsiPatchMetadataTupleFields.Company]?.Value; 44 get => (string)this.Fields[(int)MsiPatchMetadataTupleFields.Company];
45 set => this.Set((int)MsiPatchMetadataTupleFields.Company, value); 45 set => this.Set((int)MsiPatchMetadataTupleFields.Company, value);
46 } 46 }
47 47
48 public string Property 48 public string Property
49 { 49 {
50 get => (string)this.Fields[(int)MsiPatchMetadataTupleFields.Property]?.Value; 50 get => (string)this.Fields[(int)MsiPatchMetadataTupleFields.Property];
51 set => this.Set((int)MsiPatchMetadataTupleFields.Property, value); 51 set => this.Set((int)MsiPatchMetadataTupleFields.Property, value);
52 } 52 }
53 53
54 public string Value 54 public string Value
55 { 55 {
56 get => (string)this.Fields[(int)MsiPatchMetadataTupleFields.Value]?.Value; 56 get => (string)this.Fields[(int)MsiPatchMetadataTupleFields.Value];
57 set => this.Set((int)MsiPatchMetadataTupleFields.Value, value); 57 set => this.Set((int)MsiPatchMetadataTupleFields.Value, value);
58 } 58 }
59 } 59 }