This commit is contained in:
khy
2016-08-31 14:33:10 +08:00
parent dac71dfd55
commit 803ec482fb
3 changed files with 71 additions and 0 deletions

View File

@ -22,6 +22,8 @@ public class GameEntity {
private ArrayList<ApkEntity> apk;
private ArrayList<GameCollectionEntity> collection;
private String slide;
private TestEntity test;
@ -98,6 +100,14 @@ public class GameEntity {
this.apk = apk;
}
public ArrayList<GameCollectionEntity> getCollection() {
return collection;
}
public void setCollection(ArrayList<GameCollectionEntity> collection) {
this.collection = collection;
}
public String getSlide() {
return slide;
}