add create and update methods

This commit is contained in:
Haroon
2013-11-06 12:53:33 +00:00
parent e0cf9ff1ba
commit d5226534cc
5 changed files with 82 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
public class NewTeam
{
/// <summary>
/// team name
/// </summary>
public string Name { get; set; }
/// <summary>
/// permission associated to this team
/// </summary>
public Permission Permission { get; set; }
/// <summary>
/// array of repo_names this team has permissions to
/// </summary>
public string[] RepoNames { get; set; }
}
}