1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-17 00:33:35 +00:00

refactor group assignment. sync disabled users

This commit is contained in:
Kyle Spearrin
2017-05-15 16:40:10 -04:00
parent 04dbeb4564
commit 8e4a81ba8a
9 changed files with 58 additions and 21 deletions

View File

@@ -10,7 +10,7 @@ namespace Bit.Core.Models
{
public bool Success { get; set; }
public string ErrorMessage { get; set; }
public List<GroupEntry> Groups { get; set; }
public List<UserEntry> Users { get; set; }
public List<GroupEntry> Groups { get; set; } = new List<GroupEntry>();
public List<UserEntry> Users { get; set; } = new List<UserEntry>();
}
}