mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-18 13:15:15 +00:00
14 lines
469 B
C#
14 lines
469 B
C#
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; }
|
|
}
|
|
} |