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