src/ccf/ccf-provider-client/Models/OperatorRecoveryInput.cs (7 lines of code) (raw):

// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Controllers; public class OperatorRecoveryInput { // PEM encoded private key string. public string? EncryptionPrivateKey { get; set; } = default!; // Key Vault URI of the private key. public string? EncryptionKeyId { get; set; } = default!; }