Merge pull request #1048 from RobPethick/dev-IGitHubClientGitDatabaseToGit

Switch GitDatabase->Git on IGitHubProvider
This commit is contained in:
Phil Haack
2016-01-02 14:46:00 -08:00
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
{
@@ -18,6 +20,8 @@
IObservableUsersClient User { get; }
[System.Obsolete("Notifications are now available under the Activities client. This will be removed in a future update.")]
IObservableNotificationsClient Notification { get; }
IObservableGitDatabaseClient Git { get; }
[Obsolete("Use Git instead")]
IObservableGitDatabaseClient GitDatabase { get; }
IObservableSearchClient Search { get; }
}