1
0
mirror of https://github.com/bitwarden/server synced 2025-12-22 11:13:27 +00:00

create ArchiveCipher table

This commit is contained in:
jaasen-livefront
2025-11-13 18:30:30 -08:00
parent 30ff175f8e
commit 89a0eb2068
7 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#nullable disable
using Bit.Infrastructure.EntityFramework.Vault.Models;
public class CipherArchive
{
public Guid CipherId { get; set; }
public Guid UserId { get; set; }
public DateTime ArchivedDate { get; set; }
// Optional navigation props you can drop these if you don't want them.
public Cipher Cipher { get; set; }
}