Add User Email
This commit is contained in:
parent
1d3c860164
commit
5c50bf2123
30
wrapper/src/main/java/wekan/wrapper/entity/UserEmail.java
Normal file
30
wrapper/src/main/java/wekan/wrapper/entity/UserEmail.java
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
package wekan.wrapper.entity;
|
||||||
|
|
||||||
|
public class UserEmail {
|
||||||
|
public String getEmail() {
|
||||||
|
return email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEmail(String email) {
|
||||||
|
this.email = email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isVerified() {
|
||||||
|
return verified;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVerified(boolean verified) {
|
||||||
|
this.verified = verified;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "UserEmail{" +
|
||||||
|
"email='" + email + '\'' +
|
||||||
|
", verified=" + verified +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
|
||||||
|
private String email;
|
||||||
|
private boolean verified;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user