mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-18 05:05:14 +00:00
16 lines
494 B
C#
16 lines
494 B
C#
using Octokit.Internal;
|
|
|
|
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; }
|
|
}
|
|
} |