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