You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
394 B
21 lines
394 B
package com.icssoft.icspda.entity;
|
|
|
|
public class VersionData {
|
|
private String Version;
|
|
|
|
private String Url;
|
|
|
|
public void setVersion(String Version){
|
|
this.Version = Version;
|
|
}
|
|
public String getVersion(){
|
|
return this.Version;
|
|
}
|
|
public void setUrl(String Url){
|
|
this.Url = Url;
|
|
}
|
|
public String getUrl(){
|
|
return this.Url;
|
|
}
|
|
|
|
}
|