mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-13 08:21:23 +00:00
14 lines
199 B
Java
14 lines
199 B
Java
package org.kohsuke.github;
|
|
|
|
/**
|
|
* @author Kohsuke Kawaguchi
|
|
*/
|
|
class JsonTeam {
|
|
public GHTeam team;
|
|
|
|
GHTeam wrap(GHOrganization org) {
|
|
team.org = org;
|
|
return team;
|
|
}
|
|
}
|