|
|
|
@ -53,6 +53,26 @@ public class ApplicationRelease {
|
|
|
|
|
|
|
|
|
|
private boolean isDefault;
|
|
|
|
|
|
|
|
|
|
private int noOfRatedUsers;
|
|
|
|
|
|
|
|
|
|
private int stars;
|
|
|
|
|
|
|
|
|
|
public int getNoOfRatedUsers() {
|
|
|
|
|
return noOfRatedUsers;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setNoOfRatedUsers(int noOfRatedUsers) {
|
|
|
|
|
this.noOfRatedUsers = noOfRatedUsers;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getStars() {
|
|
|
|
|
return stars;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setStars(int stars) {
|
|
|
|
|
this.stars = stars;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getId() {
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|