mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-03 11:05:56 +00:00
add create and update methods
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user