Commit da9b94cb authored by Greg Messner's avatar Greg Messner
Browse files

Initial check-in.

parent f2d7d11a
package com.messners.gitlab.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 Parent {
private String id;
public String getId () {
return this.id;
}
public void setId (String id) {
this.id = id;
}
}
\ No newline at end of file
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