mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00
org user management apis
This commit is contained in:
14
src/Core/Models/Data/OrganizationUserDetails.cs
Normal file
14
src/Core/Models/Data/OrganizationUserDetails.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class OrganizationUserDetails
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid? UserId { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Email { get; set; }
|
||||
public Enums.OrganizationUserStatusType Status { get; set; }
|
||||
public Enums.OrganizationUserType Type { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user