Начало трансляции сервероного кода к новому протоколу

This commit is contained in:
RoyceDa
2026-04-18 17:50:23 +02:00
parent 068492b56d
commit 33582e2730
123 changed files with 3380 additions and 2745 deletions

View File

@@ -0,0 +1,45 @@
package im.rosetta.network.packet;
// Auto-generated by RCC (Rosetta Code Compiler). Do not edit manually.
import io.orprotocol.packet.Packet;
import im.rosetta.network.enums.NotificationAction;
import im.rosetta.network.enums.TokenType;
public class PacketPushNotification extends Packet {
public String notificationToken;
public NotificationAction action;
public TokenType tokenType;
public String deviceId;
public String getNotificationToken() {
return notificationToken;
}
public void setNotificationToken(String notificationToken) {
this.notificationToken = notificationToken;
}
public NotificationAction getAction() {
return action;
}
public void setAction(NotificationAction action) {
this.action = action;
}
public TokenType getTokenType() {
return tokenType;
}
public void setTokenType(TokenType tokenType) {
this.tokenType = tokenType;
}
public String getDeviceId() {
return deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
}