Files
octokit.net/Octokit.Reactive/IObservableGitHubClient.cs
2013-10-08 15:14:06 -07:00

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; }
}
}