Add TagsClient to GitHubClient

This commit is contained in:
John Nye
2013-11-01 20:20:20 +00:00
parent ac87eeea15
commit 85bbca1100

View File

@@ -88,6 +88,7 @@ namespace Octokit
Release = new ReleasesClient(apiConnection);
User = new UsersClient(apiConnection);
SshKey = new SshKeysClient(apiConnection);
Tag = new TagsClient(apiConnection);
}
/// <summary>
@@ -133,6 +134,7 @@ namespace Octokit
public ISshKeysClient SshKey { get; private set; }
public IUsersClient User { get; private set; }
public INotificationsClient Notification { get; private set; }
public ITagsClient Tag { get; private set; }
static Uri FixUpBaseUri(Uri uri)
{