mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-18 21:25:12 +00:00
16 lines
490 B
C#
16 lines
490 B
C#
using Octokit.Http;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
public interface IObservableGitHubClient
|
|
{
|
|
IConnection Connection { get; }
|
|
|
|
IObservableAuthorizationsClient Authorization { get; }
|
|
IObservableMiscellaneousClient Miscellaneous { get; }
|
|
IObservableOrganizationsClient Organization { get; }
|
|
IObservableRepositoriesClient Repository { get; }
|
|
IObservableSshKeysClient SshKey { get; }
|
|
IObservableUsersClient User { get; }
|
|
}
|
|
} |