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

Added description property.

No related merge requests found
Showing with 9 additions and 0 deletions
+9 -0
......@@ -18,6 +18,7 @@ public class MergeRequest {
private String state;
private String targetBranch;
private String title;
private String description;
private Integer upvotes;
public Assignee getAssignee () {
......@@ -100,6 +101,14 @@ public class MergeRequest {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getUpvotes () {
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