added more props

This commit is contained in:
Haroon
2013-11-07 10:08:29 +00:00
parent e0c9a77fba
commit 53393054fc

View File

@@ -10,6 +10,11 @@ namespace Octokit
/// </summary>
public class Team
{
/// <summary>
/// url for this team
/// </summary>
public Uri Url { get; set; }
/// <summary>
/// team id
/// </summary>
@@ -19,5 +24,25 @@ namespace Octokit
/// team name
/// </summary>
public string Name { get; set; }
/// <summary>
/// permission attached to this team
/// </summary>
public Permission Permission { get; set; }
/// <summary>
/// how many members in this team
/// </summary>
public int MembersCount { get; set; }
/// <summary>
/// how many repo this team has access to
/// </summary>
public int ReposCount { get; set; }
/// <summary>
/// who this team belongs to
/// </summary>
public User Organization { get; set; }
}
}