25 lines
555 B
Java
25 lines
555 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 PacketGroupBan extends Packet {
|
|
public String groupId;
|
|
public String publicKey;
|
|
|
|
public String getGroupId() {
|
|
return groupId;
|
|
}
|
|
|
|
public void setGroupId(String groupId) {
|
|
this.groupId = groupId;
|
|
}
|
|
|
|
public String getPublicKey() {
|
|
return publicKey;
|
|
}
|
|
|
|
public void setPublicKey(String publicKey) {
|
|
this.publicKey = publicKey;
|
|
}
|
|
}
|