示例#1
0
 public IssuesHookIssue(int number, string title, IssuesHookUser assignee, ImmutableArray <IssuesHookLabel> labels, ItemState state)
 {
     Number   = number;
     Title    = title;
     Assignee = assignee;
     Labels   = labels;
     State    = state;
 }
示例#2
0
 public IssuesHookData(string action, IssuesHookIssue issue, IssuesHookUser sender, IssuesHookRepository repository, IssuesHookLabel label)
 {
     Action     = action;
     Issue      = issue;
     Sender     = sender;
     Repository = repository;
     Label      = label;
 }
示例#3
0
 public IssuesHookRepository(string name, IssuesHookUser owner)
 {
     Name  = name;
     Owner = owner;
 }