I am having issues defining the members of a group on sensenet using the .NET API SenseNet.Client.
I need to create an automatic process to add users and groups on sensenet. I know how to create the users and groups, but I didn't find any information about adding users to group.
Here's the code that I use to create a group:
var group = Content.CreateNew("/Root/IMS/BuiltIn/OUtest", "Group", "testGroup");
group["Name"] = "testGroup";
group["DisplayName"] = "testGroup";
await group.SaveAsync();