package com.qianwen.core.api.crypto.bean; import com.qianwen.core.api.crypto.enums.CryptoType; public class CryptoInfoBean { private final CryptoType type; private final String secretKey; public CryptoInfoBean(final CryptoType type, final String secretKey) { this.type = type; this.secretKey = secretKey; } public CryptoType getType() { return this.type; } public String getSecretKey() { return this.secretKey; } }