mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
16 lines
450 B
C#
16 lines
450 B
C#
namespace Netch
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string EOF = "\r\n";
|
|
public const string UserACL = "data\\user.acl";
|
|
public const string BuiltinACL = "bin\\default.acl";
|
|
|
|
public static class Parameter
|
|
{
|
|
public const string Show = "-show";
|
|
public const string ForceUpdate = "-forceUpdate";
|
|
public const string Console = "-console";
|
|
}
|
|
}
|
|
} |