Implement AssigneesClient

Implement client to list and check available assignees for a repository
This commit is contained in:
Haacked
2013-10-22 17:24:35 -07:00
parent 70b94187b3
commit e1d618dcaa
18 changed files with 309 additions and 10 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ namespace Octokit
/// <summary>
/// Gets the connection for making HTTP requests.
/// </summary>
protected IConnection Connection { get; private set; }
public IConnection Connection { get; private set; }
/// <summary>
/// Gets the API resource at the specified URI.
+5
View File
@@ -11,6 +11,11 @@ namespace Octokit
/// </summary>
public interface IApiConnection
{
/// <summary>
/// The underlying connection.
/// </summary>
IConnection Connection { get; }
/// <summary>
/// Gets the API resource at the specified URI.
/// </summary>