8 lines
213 B
C#
8 lines
213 B
C#
namespace StevanFreeborn.Extensions.Configuration.Secure.Cli.Commands;
|
|
|
|
internal static class ExitCodes
|
|
{
|
|
public const int Success = 0;
|
|
public const int KeyNotFound = 1;
|
|
public const int KeyNotRemoved = 2;
|
|
} |