mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 23:23:15 +08:00
19 lines
597 B
C#
19 lines
597 B
C#
using System;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class CollectionUserUserDetails
|
|
{
|
|
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; }
|
|
}
|
|
}
|