Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
package com.ubt.jimu.base.entities;
/* loaded from: classes.dex */
public class RegisterBean {
private Token token;
private User user;
public class Token {
String expireAt;
String token;
public Token() {
}
public String getExpireAt() {
return this.expireAt;
}
public String getToken() {
return this.token;
}
public void setExpireAt(String str) {
this.expireAt = str;
}
public void setToken(String str) {
this.token = str;
}
}
public Token getToken() {
return this.token;
}
public User getUser() {
return this.user;
}
public void setToken(Token token) {
this.token = token;
}
public void setUser(User user) {
this.user = user;
}
}