Files
netch/Netch/Constants.cs
2021-03-27 23:44:25 +08:00

14 lines
333 B
C#

namespace Netch
{
public static class Constants
{
public const string EOF = "\r\n";
public static class Parameter
{
public const string Show = "-show";
public const string ForceUpdate = "-forceUpdate";
public const string Console = "-console";
}
}
}