34 lines
803 B
Java
34 lines
803 B
Java
package im.rosetta.network.packet;
|
|
|
|
// Auto-generated by RCC (Rosetta Code Compiler). Do not edit manually.
|
|
import io.orprotocol.packet.Packet;
|
|
public class PacketRead extends Packet {
|
|
public String fromPublicKey;
|
|
public String toPublicKey;
|
|
public String privateKey;
|
|
|
|
public String getFromPublicKey() {
|
|
return fromPublicKey;
|
|
}
|
|
|
|
public void setFromPublicKey(String fromPublicKey) {
|
|
this.fromPublicKey = fromPublicKey;
|
|
}
|
|
|
|
public String getToPublicKey() {
|
|
return toPublicKey;
|
|
}
|
|
|
|
public void setToPublicKey(String toPublicKey) {
|
|
this.toPublicKey = toPublicKey;
|
|
}
|
|
|
|
public String getPrivateKey() {
|
|
return privateKey;
|
|
}
|
|
|
|
public void setPrivateKey(String privateKey) {
|
|
this.privateKey = privateKey;
|
|
}
|
|
}
|