mirror of
https://github.com/bitwarden/server
synced 2025-12-22 11:13:27 +00:00
create ArchiveCipher table
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user