mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-26 16:07:56 +00:00
862bf6a5d3
We get a lot of build output because of missing XML comments that we
ignore. I'd like to stop ignoring them. To do that, we need to doc the
💩 out of everything.
26 lines
695 B
C#
26 lines
695 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// Used to describe a permission level.
|
|
/// </summary>
|
|
[SuppressMessage("Microsoft.Naming", "CA1711:IdentifiersShouldNotHaveIncorrectSuffix")]
|
|
public enum Permission
|
|
{
|
|
/// <summary>
|
|
/// team members can pull, push and administer these repositories.
|
|
/// </summary>
|
|
Admin,
|
|
|
|
/// <summary>
|
|
/// team members can pull and push, but not administer these repositories
|
|
/// </summary>
|
|
Push,
|
|
|
|
/// <summary>
|
|
/// team members can pull, but not push to or administer these repositories
|
|
/// </summary>
|
|
Pull
|
|
}
|
|
} |