mirror of
https://github.com/bitwarden/server
synced 2025-12-18 09:13:19 +00:00
collection user refactor
This commit is contained in:
@@ -2,15 +2,14 @@
|
||||
|
||||
namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class GroupUserUserDetails
|
||||
public class CollectionUserDetails
|
||||
{
|
||||
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; }
|
||||
public bool ReadOnly { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -2,17 +2,13 @@
|
||||
|
||||
namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class CollectionUserUserDetails
|
||||
public class GroupUserDetails
|
||||
{
|
||||
public Guid? Id { get; set; }
|
||||
public Guid OrganizationUserId { get; set; }
|
||||
public Guid? OrganizationId { get; set; }
|
||||
public Guid? CollectionId { 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; }
|
||||
public bool ReadOnly { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user