mirror of
https://github.com/bitwarden/server
synced 2025-12-18 17:23:28 +00:00
org user details apis
This commit is contained in:
15
src/Core/Models/Data/OrganizationUserUserDetails.cs
Normal file
15
src/Core/Models/Data/OrganizationUserUserDetails.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class OrganizationUserUserDetails
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid OrganizationId { 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