- Cyber Security
package com.abhinov.earnmoney;

/**
 * Created by Ramesh Naidu on 8/10/2018.
 */

public class UserProfile {
public String userNumber;
public String userEmail;
public String userName;
public int userRupees;
public int userWithdraw;
public int userPayments;


public UserProfile(){
}

public UserProfile(String userNumber, String userEmail, String userName) {
this.userNumber = userNumber;
this.userEmail = userEmail;
this.userName = userName;
this.userRupees = userRupees;
this.userWithdraw = userWithdraw;
this.userPayments = userPayments;
}

public int getuserPayments (){
return userPayments;
}

public void setuserPayments(int userPayments) {
this.userPayments = userPayments;
}

public int getUserRupees (){
return userRupees;
}

public void setUserRupees(int userRupees) {
this.userRupees = userRupees;
}

public int getUserWithdraw (){
return userWithdraw;
}

public void setUserWithdraw(int userWithdraw) {
this.userWithdraw = userWithdraw;
}

public String getUserNumber() {
return userNumber;
}

public void setUserNumber(String userNumber) {
this.userNumber = userNumber;
}

public String getUserEmail() {
return userEmail;
}

public void setUserEmail(String userEmail) {
this.userEmail = userEmail;
}

public String getUserName() {
return userName;
}

public void setUserName(String userName) {
this.userName = userName;
}


}