1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 08:13:33 +00:00
Files
server/src/Core/Vault/Models/Data/CipherSSHKeyData.cs
2025-07-08 11:46:13 -04:00

14 lines
349 B
C#

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Vault.Models.Data;
public class CipherSSHKeyData : CipherData
{
public CipherSSHKeyData() { }
public string PrivateKey { get; set; }
public string PublicKey { get; set; }
public string KeyFingerprint { get; set; }
}