Add Connection property to IObservableGitHubClient

Sometimes we need to be able to make raw requests. This
makes that easier.
This commit is contained in:
Haacked
2013-10-07 15:48:15 -07:00
parent 36e7a0a5c9
commit 8ff4e4c603
2 changed files with 12 additions and 3 deletions

View File

@@ -1,7 +1,11 @@
namespace Octokit.Reactive
using Octokit.Http;
namespace Octokit.Reactive
{
public interface IObservableGitHubClient
{
IConnection Connection { get; }
IObservableAuthorizationsClient Authorization { get; }
IObservableMiscellaneousClient Miscellaneous { get; }
IObservableOrganizationsClient Organization { get; }