Files
octokit.net/Octokit/IGitHubClient.cs
Gabriel Weyer a88ef55825 Merge
2013-12-03 10:10:00 +11:00

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; }
}
}