mirror of
https://github.com/bitwarden/server
synced 2025-12-23 19:53:40 +00:00
stub out new scim api for dir sync
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class OrganizationUserUserDetails
|
||||
public class OrganizationUserUserDetails : IExternal
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid OrganizationId { get; set; }
|
||||
|
||||
7
src/Core/Models/IExternal.cs
Normal file
7
src/Core/Models/IExternal.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Bit.Core.Models
|
||||
{
|
||||
public interface IExternal
|
||||
{
|
||||
string ExternalId { get; }
|
||||
}
|
||||
}
|
||||
@@ -3,7 +3,7 @@ using Bit.Core.Utilities;
|
||||
|
||||
namespace Bit.Core.Models.Table
|
||||
{
|
||||
public class Group : ITableObject<Guid>
|
||||
public class Group : ITableObject<Guid>, IExternal
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid OrganizationId { get; set; }
|
||||
|
||||
@@ -4,7 +4,7 @@ using Bit.Core.Enums;
|
||||
|
||||
namespace Bit.Core.Models.Table
|
||||
{
|
||||
public class OrganizationUser : ITableObject<Guid>
|
||||
public class OrganizationUser : ITableObject<Guid>, IExternal
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid OrganizationId { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user