23 lines
613 B
C#
23 lines
613 B
C#
namespace PingTool
|
|
{
|
|
public class Constant
|
|
{
|
|
#region DYNAMYC DLL FILES
|
|
public const string USER_32_DLL = "user32.dll";
|
|
public const string KERNEL_32_DLL = "kernel32.dll";
|
|
#endregion
|
|
|
|
public const int PING_TIMEOUT_MS = 500;
|
|
public const string DATETIME_FORMAT = "HH:mm:ss dd/MM/yyyy";
|
|
|
|
#region Configuration Key
|
|
public static string PREFIX_IP_CONFIGURATION_KEY = "PrefixIP";
|
|
public static string PING_TO_CONFIGURATION_KEY = "PingTo";
|
|
#endregion
|
|
|
|
|
|
public static string PING_LOGGER_FILE_NAME = "PingLogger";
|
|
|
|
}
|
|
}
|