add GetMembership endpoint which supports new behaviour

This commit is contained in:
Brendan Forster
2015-05-22 11:29:26 +09:30
parent a27fad124a
commit 0d201e6f22
4 changed files with 35 additions and 3 deletions
@@ -0,0 +1,9 @@
namespace Octokit.Models.Response
{
public enum TeamMembership
{
NotFound = 0,
Pending = 1,
Active = 2
}
}