diff --git a/Octokit/Models/Response/Team.cs b/Octokit/Models/Response/Team.cs
index ed997812..f92eec68 100644
--- a/Octokit/Models/Response/Team.cs
+++ b/Octokit/Models/Response/Team.cs
@@ -10,6 +10,11 @@ namespace Octokit
///
public class Team
{
+ ///
+ /// url for this team
+ ///
+ public Uri Url { get; set; }
+
///
/// team id
///
@@ -19,5 +24,25 @@ namespace Octokit
/// team name
///
public string Name { get; set; }
+
+ ///
+ /// permission attached to this team
+ ///
+ public Permission Permission { get; set; }
+
+ ///
+ /// how many members in this team
+ ///
+ public int MembersCount { get; set; }
+
+ ///
+ /// how many repo this team has access to
+ ///
+ public int ReposCount { get; set; }
+
+ ///
+ /// who this team belongs to
+ ///
+ public User Organization { get; set; }
}
}
\ No newline at end of file