Files
octokit.net/Octokit.Reactive/IObservableGitHubClient.cs
Haacked de305aace8 Consolidate assembly metadata into SolutionInfo
This keeps the Octokit and Octokit.Reactive libs the same version.
2013-10-18 22:05:31 -07:00

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