Class SecretResponse
Response from secret operation.
public record SecretResponse : IEquatable<SecretResponse>
- Inheritance
-
SecretResponse
- Implements
- Inherited Members
Constructors
SecretResponse(bool, string?)
Response from secret operation.
public SecretResponse(bool Success, string? Error = null)
Parameters
Properties
Error
Error message if operation failed.
public string? Error { get; init; }
Property Value
Success
Whether the operation succeeded.
public bool Success { get; init; }