mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
17 lines
586 B
C#
17 lines
586 B
C#
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Git Database API. Gives you access to read and write raw Git objects and to list and update your references.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/git/">Git API documentation</a> for more information.
|
|
/// </remarks>
|
|
public interface IGitDatabaseClient
|
|
{
|
|
IBlobsClient Blob { get; }
|
|
ITagsClient Tag { get; }
|
|
ITreesClient Tree { get; }
|
|
ICommitsClient Commit { get; }
|
|
IReferencesClient Reference { get; }
|
|
}
|
|
} |