Create GitDatabaseClient and ObservableGitDatabaseClient

This commit is contained in:
John Nye
2013-11-01 22:10:48 +00:00
parent 06af4afa2b
commit ede12b9e27
14 changed files with 83 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
namespace Octokit.Reactive
{
/// <summary>
/// Used to maintain api structure therefore contains no methods
/// </summary>
public interface IObservableGitDatabaseClient
{
IObservableTagsClient Tag { get; set; }
}
}