mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-21 06:35:11 +00:00
feat: Adds Packages and Package versions APIs (#2551)
This commit is contained in:
19
Octokit/Models/Common/PackageVersionState.cs
Normal file
19
Octokit/Models/Common/PackageVersionState.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user