mirror of
https://github.com/bitwarden/server.git
synced 2025-07-06 10:32:49 -05:00
group user assignment apis
This commit is contained in:
16
src/Core/Models/Data/GroupUserUserDetails.cs
Normal file
16
src/Core/Models/Data/GroupUserUserDetails.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class GroupUserUserDetails
|
||||
{
|
||||
public Guid OrganizationUserId { get; set; }
|
||||
public Guid OrganizationId { get; set; }
|
||||
public Guid GroupId { 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user