Switch GitDatabase->Git on IGitHubProvider

This commit is contained in:
Robert Pethick
2015-12-24 17:01:37 +00:00
parent 078c710f8e
commit ffc0b35608
25 changed files with 114 additions and 88 deletions

View File

@@ -1,4 +1,6 @@
namespace Octokit.Reactive
using System;
namespace Octokit.Reactive
{
public interface IObservableGitHubClient : IApiInfoProvider
{
@@ -17,6 +19,8 @@
IObservableSshKeysClient SshKey { get; }
IObservableUsersClient User { get; }
IObservableNotificationsClient Notification { get; }
IObservableGitDatabaseClient Git { get; }
[Obsolete("Use Git instead")]
IObservableGitDatabaseClient GitDatabase { get; }
IObservableSearchClient Search { get; }
}