Back to project page worldwondersproject.
The source code is released under:
MIT License
If you think the Android project worldwondersproject listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ciandt.cursoandroid.worldwondersapp.entity; // www . j av a 2 s . c o m public class User { private String userEmail; private String userName; private String userPassword; private String userCountry; private String userLanguage; private String userGender; private Integer userNotification; public String getUserName() { return userName; } public void setUserName(final String userName) { this.userName = userName; } public String getUserEmail() { return userEmail; } public void setUserEmail(final String userEmail) { this.userEmail = userEmail; } public String getUserPassword() { return userPassword; } public void setUserPassword(final String userPassword) { this.userPassword = userPassword; } public String getUserCountry() { return userCountry; } public void setUserCountry(final String userCountry) { this.userCountry = userCountry; } public String getUserLanguage() { return userLanguage; } public void setUserLanguage(final String userLanguage) { this.userLanguage = userLanguage; } public String getUserGender() { return userGender; } public void setUserGender(final String userGender) { this.userGender = userGender; } public Integer getUserNotification() { return userNotification; } public void setUserNotification(final Integer userNotification) { this.userNotification = userNotification; } }