Example #1
0
 public IssueRequest(IssueRequestType type)
 {
     this.Type  = type;
     this.Issue = (Issue)null;
     this.Tag   = (object)null;
 }
Example #2
0
 public IssueRequest(IssueRequestType type, Issue issue, object tag)
 {
     this.Type  = type;
     this.Issue = issue;
     this.Tag   = tag;
 }