1
0
mirror of https://github.com/bitwarden/server synced 2025-12-22 03:03:33 +00:00
Files
server/src/Infrastructure.EntityFramework/Vault/Models/CipherArchive.cs
2025-11-13 18:30:30 -08:00

14 lines
352 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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; }
}