PC
2024-03-30 48c8f6440a6c0b0c060467a0633bc669ca255345
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.qianwen.core.api.crypto.bean;
 
import com.qianwen.core.api.crypto.enums.CryptoType;
 
/* loaded from: blade-starter-api-crypto-9.3.0.0-SNAPSHOT.jar:org/springblade/core/api/crypto/bean/CryptoInfoBean.class */
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;
    }
}