package com.lcjian.library.upgrade;
|
|
import java.io.Serializable;
|
|
public class Version implements Serializable {
|
|
/**
|
* serialVersionUID
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private String versionCode;
|
private String description;
|
private String downloadUrl;
|
private String fileName;
|
private String title;
|
|
private int type;
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getVersionCode() {
|
return versionCode;
|
}
|
|
public void setVersionCode(String versionCode) {
|
this.versionCode = versionCode;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getDownloadUrl() {
|
return downloadUrl;
|
}
|
|
public void setDownloadUrl(String downloadUrl) {
|
this.downloadUrl = downloadUrl;
|
}
|
|
public String getFileName() {
|
return fileName;
|
}
|
|
public void setFileName(String fileName) {
|
this.fileName = fileName;
|
}
|
}
|