83 lines
1.7 KiB
Java
83 lines
1.7 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class UpdateApkEntities {
|
|
private String info;
|
|
private ModelsBean models;
|
|
private boolean status;
|
|
|
|
public static class ModelsBean {
|
|
private List<String> content;
|
|
private boolean isForce;
|
|
private boolean isNeed;
|
|
private String path;
|
|
private String versionName;
|
|
|
|
public List<String> getContent() {
|
|
return this.content;
|
|
}
|
|
|
|
public String getPath() {
|
|
return this.path;
|
|
}
|
|
|
|
public String getVersionName() {
|
|
return this.versionName;
|
|
}
|
|
|
|
public boolean isIsForce() {
|
|
return this.isForce;
|
|
}
|
|
|
|
public boolean isIsNeed() {
|
|
return this.isNeed;
|
|
}
|
|
|
|
public void setContent(List<String> list) {
|
|
this.content = list;
|
|
}
|
|
|
|
public void setIsForce(boolean z) {
|
|
this.isForce = z;
|
|
}
|
|
|
|
public void setIsNeed(boolean z) {
|
|
this.isNeed = z;
|
|
}
|
|
|
|
public void setPath(String str) {
|
|
this.path = str;
|
|
}
|
|
|
|
public void setVersionName(String str) {
|
|
this.versionName = str;
|
|
}
|
|
}
|
|
|
|
public String getInfo() {
|
|
return this.info;
|
|
}
|
|
|
|
public ModelsBean getModels() {
|
|
return this.models;
|
|
}
|
|
|
|
public boolean isStatus() {
|
|
return this.status;
|
|
}
|
|
|
|
public void setInfo(String str) {
|
|
this.info = str;
|
|
}
|
|
|
|
public void setModels(ModelsBean modelsBean) {
|
|
this.models = modelsBean;
|
|
}
|
|
|
|
public void setStatus(boolean z) {
|
|
this.status = z;
|
|
}
|
|
}
|