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
+20
View File
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
public class UpdateTeam
{
/// <summary>
/// team name
/// </summary>
public string Name { get; set; }
/// <summary>
/// permission for this team
/// </summary>
public Permission Permission { get; set; }
}
}