mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
* add SecurityAndAnalysis to repository get/update * add repository advanced security * cleanup --------- Co-authored-by: Dirty Gooback <19241000+dirtygooback@users.noreply.github.com> Co-authored-by: Nick Floyd <139819+nickfloyd@users.noreply.github.com>
13 lines
198 B
C#
13 lines
198 B
C#
using Octokit.Internal;
|
|
|
|
namespace Octokit
|
|
{
|
|
public enum Status
|
|
{
|
|
[Parameter(Value = "enabled")]
|
|
Enabled,
|
|
[Parameter(Value = "disabled")]
|
|
Disabled
|
|
}
|
|
}
|