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

Added description property.

parent 41182514
...@@ -18,6 +18,7 @@ public class MergeRequest { ...@@ -18,6 +18,7 @@ public class MergeRequest {
private String state; private String state;
private String targetBranch; private String targetBranch;
private String title; private String title;
private String description;
private Integer upvotes; private Integer upvotes;
public Assignee getAssignee () { public Assignee getAssignee () {
...@@ -100,6 +101,14 @@ public class MergeRequest { ...@@ -100,6 +101,14 @@ public class MergeRequest {
this.title = title; this.title = title;
} }
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getUpvotes () { public Integer getUpvotes () {
return this.upvotes; return this.upvotes;
} }
......
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