yangys
2024-05-11 522dafb06be3374f27d087c370bcf06027e0f1cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
    }
}