mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
27 lines
854 B
C#
27 lines
854 B
C#
using Octokit.Internal;
|
|
|
|
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// A Client for the GitHub API v3. You can read more about the api here: http://developer.github.com.
|
|
/// </summary>
|
|
public interface IGitHubClient
|
|
{
|
|
IConnection Connection { get; }
|
|
|
|
IAuthorizationsClient Authorization { get; }
|
|
IActivitiesClient Activity { get; }
|
|
IIssuesClient Issue { get; }
|
|
IMiscellaneousClient Miscellaneous { get; }
|
|
IOrganizationsClient Organization { get; }
|
|
IRepositoriesClient Repository { get; }
|
|
IGistsClient Gist { get; }
|
|
IReleasesClient Release { get; }
|
|
ISshKeysClient SshKey { get; }
|
|
IUsersClient User { get; }
|
|
INotificationsClient Notification { get; }
|
|
IGitDatabaseClient GitDatabase { get; }
|
|
ISearchClient Search { get; }
|
|
}
|
|
}
|