mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 10:55:53 +00:00
add teams client to orgclient
This commit is contained in:
@@ -16,6 +16,8 @@ namespace Octokit
|
||||
{
|
||||
IOrganizationMembersClient Member { get; }
|
||||
|
||||
ITeamsClient Team { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns the specified <see cref="Organization"/>.
|
||||
/// </summary>
|
||||
|
||||
@@ -21,10 +21,13 @@ namespace Octokit
|
||||
public OrganizationsClient(IApiConnection apiConnection) : base(apiConnection)
|
||||
{
|
||||
Member = new OrganizationMembersClient(apiConnection);
|
||||
Team = new TeamsClient(apiConnection);
|
||||
}
|
||||
|
||||
public IOrganizationMembersClient Member { get; private set; }
|
||||
|
||||
public ITeamsClient Team { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns the specified <see cref="Organization"/>.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user