mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 04:16:51 +00:00
18 lines
452 B
C#
18 lines
452 B
C#
using Octokit.Http;
|
|
|
|
namespace Octokit
|
|
{
|
|
public interface IGitHubClient
|
|
{
|
|
IConnection Connection { get; }
|
|
|
|
IAuthorizationsClient Authorization { get; }
|
|
IAutoCompleteClient AutoComplete { get; }
|
|
IOrganizationsClient Organization { get; }
|
|
IRepositoriesClient Repository { get; }
|
|
IReleasesClient Releases { get; }
|
|
ISshKeysClient SshKey { get; }
|
|
IUsersClient User { get; }
|
|
}
|
|
}
|