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