update ms

This commit is contained in:
M M Arif
2019-06-24 01:30:53 +05:00
parent 34383d4fc4
commit 102a906f62
2 changed files with 8 additions and 4 deletions

View File

@@ -29,10 +29,11 @@ public class CreateIssue {
this.labels = labels;
}
public CreateIssue(String title, String body, String due_date) {
public CreateIssue(String title, String body, String due_date, int milestone) {
this.title = title;
this.body = body;
this.due_date = due_date;
this.milestone = milestone;
}
private class Assignees {