mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
26 lines
791 B
C#
26 lines
791 B
C#
using Octokit.Internal;
|
|
|
|
namespace Octokit
|
|
{
|
|
public interface IGitHubClient
|
|
{
|
|
IConnection Connection { get; }
|
|
|
|
IAuthorizationsClient Authorization { get; }
|
|
IActivitiesClient Activity { get; }
|
|
IBlobsClient Blob { get; }
|
|
IIssuesClient Issue { get; }
|
|
IMiscellaneousClient Miscellaneous { get; }
|
|
IOrganizationsClient Organization { get; }
|
|
IPullRequestsClient PullRequest { get; }
|
|
IRepositoriesClient Repository { get; }
|
|
IGistsClient Gist { get; }
|
|
IReleasesClient Release { get; }
|
|
ISshKeysClient SshKey { get; }
|
|
IUsersClient User { get; }
|
|
INotificationsClient Notification { get; }
|
|
IGitDatabaseClient GitDatabase { get; }
|
|
ITreesClient Tree { get; }
|
|
}
|
|
}
|