Files
octokit.net/Octokit/Models/Response/Scope.cs
awedist 7d54cb0d85 feat: Implement dependency review and dependency submission APIs (#2932)
Implement dependency review and dependency submission

Co-authored-by: André Pereira <Andre.LuisPereira@Student.HTW-Berlin.de>
2024-06-14 17:03:11 -05:00

26 lines
633 B
C#

using Octokit.Internal;
namespace Octokit
{
public enum Scope
{
/// <summary>
/// The scope of the dependency is not specified or cannot be determined.
/// </summary>
[Parameter(Value = "Unknown")]
Unknown,
/// <summary>
/// Dependency is utilized at runtime and in the development environment.
/// </summary>
[Parameter(Value = "Runtime")]
Runtime,
/// <summary>
/// Dependency is only utilized in the development environment.
/// </summary>
[Parameter(Value = "Development")]
Development,
}
}