mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 12:26:18 +00:00
f9c5b6992a
implement actions OIDC client Co-authored-by: Nick Floyd <139819+nickfloyd@users.noreply.github.com>
20 lines
395 B
C#
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
|
|
}
|
|
}
|