mirror of
https://github.com/bitwarden/server.git
synced 2025-04-07 05:58:13 -05:00
15 lines
409 B
C#
15 lines
409 B
C#
using System;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class GroupUserDetails
|
|
{
|
|
public Guid OrganizationUserId { get; set; }
|
|
public bool AccessAll { get; set; }
|
|
public string Name { get; set; }
|
|
public string Email { get; set; }
|
|
public Enums.OrganizationUserStatusType Status { get; set; }
|
|
public Enums.OrganizationUserType Type { get; set; }
|
|
}
|
|
}
|