25 lines
638 B
Java
25 lines
638 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 PacketOnlineSubscribe extends Packet {
|
|
public String privateKey;
|
|
public java.util.List<String> publicKeys;
|
|
|
|
public String getPrivateKey() {
|
|
return privateKey;
|
|
}
|
|
|
|
public void setPrivateKey(String privateKey) {
|
|
this.privateKey = privateKey;
|
|
}
|
|
|
|
public java.util.List<String> getPublicKeys() {
|
|
return publicKeys;
|
|
}
|
|
|
|
public void setPublicKeys(java.util.List<String> publicKeys) {
|
|
this.publicKeys = publicKeys;
|
|
}
|
|
}
|