mirror of
https://github.com/bitwarden/server.git
synced 2025-04-21 21:15:10 -05:00
17 lines
506 B
C#
17 lines
506 B
C#
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; }
|
|
public bool AccessAllCollections { get; set; }
|
|
}
|
|
}
|