mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
removed redundant class
This commit is contained in:
parent
e2a0e6969d
commit
9ab36091c2
1 changed files with 0 additions and 45 deletions
|
|
@ -1,45 +0,0 @@
|
|||
package fr.free.nrw.commons.achievements;
|
||||
|
||||
/**
|
||||
* Contains information about the levels
|
||||
*/
|
||||
public class Level {
|
||||
private int maximumUploadCount;
|
||||
private int maximumUniqueImagesUsed;
|
||||
private int revertRate;
|
||||
private int level;
|
||||
private int levelStyle;
|
||||
|
||||
public int getMaximumUniqueImagesUsed() {
|
||||
return maximumUniqueImagesUsed;
|
||||
}
|
||||
|
||||
public int getMaximumUploadCount() {
|
||||
return maximumUploadCount;
|
||||
}
|
||||
|
||||
public void setMaximumUploadCount(int maximumUploadCount) {
|
||||
this.maximumUploadCount = maximumUploadCount;
|
||||
}
|
||||
|
||||
public void setMaximumUniqueImagesUsed(int maximumUniqueImagesUsed) {
|
||||
this.maximumUniqueImagesUsed = maximumUniqueImagesUsed;
|
||||
}
|
||||
|
||||
public int getLevel() {
|
||||
return level;
|
||||
}
|
||||
|
||||
public void setLevel(int level) {
|
||||
this.level = level;
|
||||
}
|
||||
|
||||
public void setLevelStyle(int levelStyle) {
|
||||
this.levelStyle = levelStyle;
|
||||
}
|
||||
|
||||
public int getLevelStyle() {
|
||||
return levelStyle;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue