From 53393054fc1bb80ac3066d72343001b91f7e21d7 Mon Sep 17 00:00:00 2001 From: Haroon Date: Thu, 7 Nov 2013 10:08:29 +0000 Subject: [PATCH] added more props --- Octokit/Models/Response/Team.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) 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