aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/UserGroupTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/wixext/Tuples/UserGroupTuple.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/wixext/Tuples/UserGroupTuple.cs b/src/wixext/Tuples/UserGroupTuple.cs
index 0386a26e..30c5e9ff 100644
--- a/src/wixext/Tuples/UserGroupTuple.cs
+++ b/src/wixext/Tuples/UserGroupTuple.cs
@@ -11,8 +11,8 @@ namespace WixToolset.Util
11 UtilTupleDefinitionType.UserGroup.ToString(), 11 UtilTupleDefinitionType.UserGroup.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(UserGroupTupleFields.User_), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(UserGroupTupleFields.UserRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(UserGroupTupleFields.Group_), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(UserGroupTupleFields.GroupRef), IntermediateFieldType.String),
16 }, 16 },
17 typeof(UserGroupTuple)); 17 typeof(UserGroupTuple));
18 } 18 }
@@ -24,8 +24,8 @@ namespace WixToolset.Util.Tuples
24 24
25 public enum UserGroupTupleFields 25 public enum UserGroupTupleFields
26 { 26 {
27 User_, 27 UserRef,
28 Group_, 28 GroupRef,
29 } 29 }
30 30
31 public class UserGroupTuple : IntermediateTuple 31 public class UserGroupTuple : IntermediateTuple
@@ -40,16 +40,16 @@ namespace WixToolset.Util.Tuples
40 40
41 public IntermediateField this[UserGroupTupleFields index] => this.Fields[(int)index]; 41 public IntermediateField this[UserGroupTupleFields index] => this.Fields[(int)index];
42 42
43 public string User_ 43 public string UserRef
44 { 44 {
45 get => this.Fields[(int)UserGroupTupleFields.User_].AsString(); 45 get => this.Fields[(int)UserGroupTupleFields.UserRef].AsString();
46 set => this.Set((int)UserGroupTupleFields.User_, value); 46 set => this.Set((int)UserGroupTupleFields.UserRef, value);
47 } 47 }
48 48
49 public string Group_ 49 public string GroupRef
50 { 50 {
51 get => this.Fields[(int)UserGroupTupleFields.Group_].AsString(); 51 get => this.Fields[(int)UserGroupTupleFields.GroupRef].AsString();
52 set => this.Set((int)UserGroupTupleFields.Group_, value); 52 set => this.Set((int)UserGroupTupleFields.GroupRef, value);
53 } 53 }
54 } 54 }
55} \ No newline at end of file 55} \ No newline at end of file