mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-27 08:32:04 +00:00
10 lines
130 B
C#
10 lines
130 B
C#
namespace Octokit
|
|
{
|
|
public enum TeamMembership
|
|
{
|
|
NotFound = 0,
|
|
Pending = 1,
|
|
Active = 2
|
|
}
|
|
}
|