mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
12 lines
428 B
C#
12 lines
428 B
C#
namespace Octokit.Reactive
|
|
{
|
|
public interface IObservableGitHubClient
|
|
{
|
|
IObservableAuthorizationsClient Authorization { get; }
|
|
IObservableAutoCompleteClient AutoComplete { get; }
|
|
IObservableOrganizationsClient Organization { get; }
|
|
IObservableRepositoriesClient Repositories { get; }
|
|
IObservableSshKeysClient SshKey { get; }
|
|
IObservableUsersClient User { get; }
|
|
}
|
|
} |