mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
17 lines
593 B
C#
17 lines
593 B
C#
namespace Netch
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string TempConfig = "data\\last.json";
|
|
public const string TempRouteFile = "data\\route.txt";
|
|
public const string EOF = "\r\n";
|
|
public const string OutputTemplate = @"[{Timestamp:yyyy-MM-dd HH:mm:ss}][{Level}] {Message:lj}{NewLine}{Exception}";
|
|
public const string LogFile = "logging\\application.log";
|
|
|
|
public static class Parameter
|
|
{
|
|
public const string Show = "-show";
|
|
public const string ForceUpdate = "-forceUpdate";
|
|
}
|
|
}
|
|
} |