mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 21:55:12 +00:00
Make client property names consistent
Also added ObservableReleasesClient
This commit is contained in:
@@ -39,7 +39,7 @@ namespace Octokit
|
||||
AutoComplete = new AutoCompleteClient(connection);
|
||||
Organization = new OrganizationsClient(new ApiConnection<Organization>(connection));
|
||||
Repository = new RepositoriesClient(new ApiConnection<Repository>(connection));
|
||||
Releases = new ReleasesClient(new ApiConnection<Release>(connection));
|
||||
Release = new ReleasesClient(new ApiConnection<Release>(connection));
|
||||
User = new UsersClient(new ApiConnection<User>(connection));
|
||||
SshKey = new SshKeysClient(new ApiConnection<SshKey>(connection));
|
||||
}
|
||||
@@ -80,7 +80,7 @@ namespace Octokit
|
||||
public IAutoCompleteClient AutoComplete { get; private set; }
|
||||
public IOrganizationsClient Organization { get; private set; }
|
||||
public IRepositoriesClient Repository { get; private set; }
|
||||
public IReleasesClient Releases { get; private set; }
|
||||
public IReleasesClient Release { get; private set; }
|
||||
public ISshKeysClient SshKey { get; private set; }
|
||||
public IUsersClient User { get; private set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user