mirror of
https://github.com/bitwarden/server
synced 2025-12-23 03:33:35 +00:00
sync with user externalids
This commit is contained in:
11
src/Core/Models/Business/ImportedGroup.cs
Normal file
11
src/Core/Models/Business/ImportedGroup.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using Bit.Core.Models.Table;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Bit.Core.Models.Business
|
||||
{
|
||||
public class ImportedGroup
|
||||
{
|
||||
public Group Group { get; set; }
|
||||
public HashSet<string> ExternalUserIds { get; set; }
|
||||
}
|
||||
}
|
||||
8
src/Core/Models/Business/ImportedOrganizationUser.cs
Normal file
8
src/Core/Models/Business/ImportedOrganizationUser.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Bit.Core.Models.Business
|
||||
{
|
||||
public class ImportedOrganizationUser
|
||||
{
|
||||
public string Email { get; set; }
|
||||
public string ExternalId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user