mirror of
https://github.com/bitwarden/server
synced 2025-12-23 19:53:40 +00:00
Move into and read ciphers from org subvaults
This commit is contained in:
@@ -6,7 +6,7 @@ namespace Bit.Core.Models.Table
|
||||
public class Cipher : IDataObject<Guid>
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public Guid UserId { get; set; }
|
||||
public Guid? UserId { get; set; }
|
||||
public Guid? OrganizationId { get; set; }
|
||||
public Enums.CipherType Type { get; set; }
|
||||
public string Data { get; set; }
|
||||
|
||||
10
src/Core/Models/Table/SubvaultCipher.cs
Normal file
10
src/Core/Models/Table/SubvaultCipher.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
|
||||
namespace Bit.Core.Models.Table
|
||||
{
|
||||
public class SubvaultCipher
|
||||
{
|
||||
public Guid SubvaultId { get; set; }
|
||||
public Guid CipherId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user