mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 01:43:15 +08:00
- Added sproc to check if org admin for free org create - Removed old proeprties not in user from org and subvault - Added more cascade deletes
17 lines
497 B
C#
17 lines
497 B
C#
using System;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class SubvaultUserUserDetails
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid OrganizationUserId { get; set; }
|
|
public Guid SubvaultId { 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; }
|
|
}
|
|
}
|