mirror of
https://github.com/bitwarden/server
synced 2025-12-16 08:13:33 +00:00
14 lines
349 B
C#
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; }
|
|
}
|