JAL-1740 updated synch codes to use a git repo rather than FTP
[jalview.git] / src / jalview / json / binding / v1 / BioJSReleasePojo.java
diff --git a/src/jalview/json/binding/v1/BioJSReleasePojo.java b/src/jalview/json/binding/v1/BioJSReleasePojo.java
new file mode 100644 (file)
index 0000000..61dd308
--- /dev/null
@@ -0,0 +1,46 @@
+package jalview.json.binding.v1;
+
+public class BioJSReleasePojo
+{
+
+  private String url;
+
+  private String version;
+
+  private String type;
+
+  public BioJSReleasePojo()
+  {
+
+  }
+
+  public String getUrl()
+  {
+    return url;
+  }
+
+  public void setUrl(String url)
+  {
+    this.url = url;
+  }
+
+  public String getVersion()
+  {
+    return version;
+  }
+
+  public void setVersion(String version)
+  {
+    this.version = version;
+  }
+
+  public String getType()
+  {
+    return type;
+  }
+
+  public void setType(String type)
+  {
+    this.type = type;
+  }
+}