51 lines
1.1 KiB
Java
51 lines
1.1 KiB
Java
package cn.com.magnity.magnitycx.upgrade;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class UpgradeInfo {
|
|
private String apkUrl_;
|
|
private String description_;
|
|
private boolean isForceUpgrade_;
|
|
private int versionCode_;
|
|
private String versionName_;
|
|
|
|
public void setVersionName(String name) {
|
|
this.versionName_ = name;
|
|
}
|
|
|
|
public String getVersionName() {
|
|
return this.versionName_;
|
|
}
|
|
|
|
public void setVersionCode(int code) {
|
|
this.versionCode_ = code;
|
|
}
|
|
|
|
public int getVersionCode() {
|
|
return this.versionCode_;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description_ = description;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return this.description_;
|
|
}
|
|
|
|
public void setApkUrl(String url) {
|
|
this.apkUrl_ = url;
|
|
}
|
|
|
|
public String getApkUrl() {
|
|
return this.apkUrl_;
|
|
}
|
|
|
|
public void setForceUpgrade(boolean b) {
|
|
this.isForceUpgrade_ = b;
|
|
}
|
|
|
|
public boolean isForceUpgrade() {
|
|
return this.isForceUpgrade_;
|
|
}
|
|
}
|