using System;
using Octokit.Internal;
namespace Octokit
{
///
/// States of a Team/Organization Membership
///
public enum MembershipState
{
///
/// The membership is pending
///
[Parameter(Value = "pending")]
Pending,
///
/// The membership is active
///
[Parameter(Value = "active")]
Active
}
}