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

@@ -1,6 +1,9 @@
namespace UserService.Infrastructure.DataModels
using System.Collections.Generic;
namespace UserService.Infrastructure.DataModels
{
public class SecurityGroup : Member
{
public ISet<MembersMember> Members { get; set; } = new HashSet<MembersMember>();
}
}