Пример #1
0
 /// <summary>
 /// Gets the followers for an individual issue from a repository.
 /// authorization is not required for public repositories with a public issue tracker.
 /// Private repositories or private issue trackers require the caller to authenticate with an account that has appropriate access.
 /// </summary>
 /// <returns></returns>
 public async Task <IssueFollowers> ListFollowers()
 {
     return(await _repositoriesEndPoint.ListIssueFollowers(_issueId));
 }