Начало трансляции сервероного кода к новому протоколу
This commit is contained in:
42
src/main/java/im/rosetta/network/packet/PacketDeviceNew.java
Normal file
42
src/main/java/im/rosetta/network/packet/PacketDeviceNew.java
Normal file
@@ -0,0 +1,42 @@
|
||||
package im.rosetta.network.packet;
|
||||
|
||||
// Auto-generated by RCC (Rosetta Code Compiler). Do not edit manually.
|
||||
import io.orprotocol.packet.Packet;
|
||||
public class PacketDeviceNew extends Packet {
|
||||
public String ipAddress;
|
||||
public String deviceId;
|
||||
public String deviceName;
|
||||
public String deviceOs;
|
||||
|
||||
public String getIpAddress() {
|
||||
return ipAddress;
|
||||
}
|
||||
|
||||
public void setIpAddress(String ipAddress) {
|
||||
this.ipAddress = ipAddress;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getDeviceOs() {
|
||||
return deviceOs;
|
||||
}
|
||||
|
||||
public void setDeviceOs(String deviceOs) {
|
||||
this.deviceOs = deviceOs;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user