mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 06:05:12 +00:00
20 lines
394 B
C#
20 lines
394 B
C#
using Octokit.Internal;
|
|
|
|
namespace Octokit
|
|
{
|
|
public enum PackageVersionState
|
|
{
|
|
/// <summary>
|
|
/// Package version which is active
|
|
/// </summary>
|
|
[Parameter(Value = "active")]
|
|
Active,
|
|
|
|
/// <summary>
|
|
/// Package version whic is deleted
|
|
/// </summary>
|
|
[Parameter(Value = "deleted")]
|
|
Deleted
|
|
}
|
|
}
|