Files
netch/Netch/Constants.cs
2021-03-26 10:29:50 +08:00

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";
}
}
}