mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-18 05:05:14 +00:00
14 lines
438 B
C#
14 lines
438 B
C#
namespace Octokit.Reactive
|
|
{
|
|
/// <summary>
|
|
/// Used to maintain api structure therefore contains no methods
|
|
/// </summary>
|
|
public interface IObservableGitDatabaseClient
|
|
{
|
|
IObservableBlobsClient Blob { get; }
|
|
IObservableTagsClient Tag { get; }
|
|
IObservableTreesClient Tree { get; }
|
|
IObservableCommitsClient Commit { get; }
|
|
IObservableReferencesClient Reference { get; }
|
|
}
|
|
} |