GitNex/app/src/main/java/org/mian/gitnex/models/CreateIssue.java

43 lines
994 B
Java

package org.mian.gitnex.models;
import java.util.List;
/**
* Author M M Arif
*/
public class CreateIssue {
private String body;
private boolean closed;
private String due_date;
private int milestone;
private String title;
private List<String> assignees;
private List<Integer> labels;
public CreateIssue(String assignee, String body, boolean closed, String due_date, int milestone, String title, List<String> assignees, List<Integer> labels) {
this.body = body;
this.closed = closed;
this.due_date = due_date;
this.milestone = milestone;
this.title = title;
this.assignees = assignees;
this.labels = labels;
}
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 {
}
private class Labels {
}
}