Files
octokit.net/Octokit/Models/Common/PackageVersionState.cs
T
Dirty Gooback f9c5b6992a [feat]: Implement Actions OIDC Client (#2828)
implement actions OIDC client

Co-authored-by: Nick Floyd <139819+nickfloyd@users.noreply.github.com>
2024-01-02 16:04:07 -06:00

20 lines
395 B
C#

using Octokit.Internal;
namespace Octokit
{
public enum PackageVersionState
{
/// <summary>
/// Package version which is active
/// </summary>
[Parameter(Value = "active")]
Active,
/// <summary>
/// Package version which is deleted
/// </summary>
[Parameter(Value = "deleted")]
Deleted
}
}