test for create team

This commit is contained in:
Haroon
2013-11-07 09:27:43 +00:00
parent c0d33a0274
commit 782dde9c3f
3 changed files with 41 additions and 1 deletions
+7
View File
@@ -1,3 +1,4 @@
using Octokit.Internal;
using System;
using System.Collections.Generic;
using System.Diagnostics;
@@ -7,6 +8,11 @@ namespace Octokit
{
public class NewTeam
{
public NewTeam(string name)
{
Name = name;
}
/// <summary>
/// team name
/// </summary>
@@ -21,6 +27,7 @@ namespace Octokit
/// array of repo_names this team has permissions to
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
//[Parameter(Key="repo_names")]
public string[] RepoNames { get; set; }
}
}