aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/_StreamsTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/_StreamsTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/_StreamsTuple.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/_StreamsTuple.cs b/src/WixToolset.Data/Tuples/_StreamsTuple.cs
index 1f9d75e8..c581d11a 100644
--- a/src/WixToolset.Data/Tuples/_StreamsTuple.cs
+++ b/src/WixToolset.Data/Tuples/_StreamsTuple.cs
@@ -39,13 +39,13 @@ namespace WixToolset.Data.Tuples
39 39
40 public string Name 40 public string Name
41 { 41 {
42 get => (string)this.Fields[(int)_StreamsTupleFields.Name]?.Value; 42 get => (string)this.Fields[(int)_StreamsTupleFields.Name];
43 set => this.Set((int)_StreamsTupleFields.Name, value); 43 set => this.Set((int)_StreamsTupleFields.Name, value);
44 } 44 }
45 45
46 public string Data 46 public string Data
47 { 47 {
48 get => (string)this.Fields[(int)_StreamsTupleFields.Data]?.Value; 48 get => (string)this.Fields[(int)_StreamsTupleFields.Data];
49 set => this.Set((int)_StreamsTupleFields.Data, value); 49 set => this.Set((int)_StreamsTupleFields.Data, value);
50 } 50 }
51 } 51 }