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