Files
octokit.net/Octokit/Models/Request/Permission.cs
Haacked 862bf6a5d3 Add a bunch of doc comments
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.
2015-09-27 17:10:39 -07:00

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
}
}