Initial commit
This commit is contained in:
47
sources/com/ubt/jimu/base/entities/RegisterBean.java
Normal file
47
sources/com/ubt/jimu/base/entities/RegisterBean.java
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user