try another way to implement the data stucture

This commit is contained in:
2020-09-30 22:05:18 +02:00
parent 410062daae
commit 1b387adae1
19 changed files with 234 additions and 257 deletions

View File

@@ -4,8 +4,6 @@ namespace UserService.Infrastructure.DataModels
{
public abstract class Member : Node
{
public ISet<MembersMember> Members { get; set; } = new HashSet<MembersMember>();
public ISet<MembersMember> MemberOf { get; set; } = null!;
}
}