mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
21 lines
522 B
C#
21 lines
522 B
C#
using System.Diagnostics;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class OrganizationMembershipUpdate
|
|
{
|
|
public OrganizationMembershipUpdate()
|
|
{
|
|
Role = MembershipRole.Member;
|
|
}
|
|
|
|
/// <summary>
|
|
/// The role to give the user in the organization. The default is <see cref="MembershipRole.Member"/>.
|
|
/// </summary>
|
|
public MembershipRole Role { get; set; }
|
|
|
|
internal string DebuggerDisplay => $"{Role}";
|
|
}
|
|
}
|