Implement IssuesClient and interface

This required updating our serialization strategy so we handle enums
better.
This commit is contained in:
Haacked
2013-10-22 10:29:26 -07:00
parent 1cc3da9ce3
commit ad210cecc7
35 changed files with 1278 additions and 55 deletions

View File

@@ -35,6 +35,7 @@ namespace Octokit
Connection = connection;
Authorization = new AuthorizationsClient(new ApiConnection(connection));
Issue = new IssuesClient(new ApiConnection(connection));
Miscellaneous = new MiscellaneousClient(connection);
Notification = new NotificationsClient(new ApiConnection(connection));
Organization = new OrganizationsClient(new ApiConnection(connection));
@@ -79,6 +80,7 @@ namespace Octokit
public IConnection Connection { get; private set; }
public IAuthorizationsClient Authorization { get; private set; }
public IIssuesClient Issue { get; private set; }
public IMiscellaneousClient Miscellaneous { get; private set; }
public IOrganizationsClient Organization { get; private set; }
public IRepositoriesClient Repository { get; private set; }