feat: Adds Packages and Package versions APIs (#2551)

This commit is contained in:
Chris Simpson
2022-09-08 15:59:46 +01:00
committed by GitHub
parent b3d2096766
commit cf9db5fc46
27 changed files with 3460 additions and 0 deletions

View 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
}
}