You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
508 B
34 lines
508 B
package com.Sq.phb;
|
|
|
|
public class UserScore {
|
|
String username;
|
|
int score;
|
|
public UserScore() {
|
|
|
|
}
|
|
|
|
/**
|
|
* @param username
|
|
* @param score
|
|
*/
|
|
public UserScore(String username,int score) {
|
|
super();
|
|
this.username = username;
|
|
this.score = score;
|
|
}
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
public int getScore() {
|
|
return score;
|
|
}
|
|
public void setScore(int score) {
|
|
this.score = score;
|
|
}
|
|
|
|
}
|