mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
15 lines
263 B
C#
15 lines
263 B
C#
using Octokit.Internal;
|
|
|
|
namespace Octokit
|
|
{
|
|
public enum MakeLatestQualifier
|
|
{
|
|
[Parameter(Value = "true")]
|
|
True = 1,
|
|
[Parameter(Value = "false")]
|
|
False = 2,
|
|
[Parameter(Value = "legacy")]
|
|
Legacy = 3,
|
|
}
|
|
}
|