Commit 50c190b3 authored by Greg Messner's avatar Greg Messner
Browse files

Initial check-in.

parent bb01542b
package org.gitlab4j.api.models;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Version {
private String version;
private String revision;
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getRevision() {
return revision;
}
public void setRevision(String revision) {
this.revision = revision;
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment