2018-01-30 08:18:47 +01:00
|
|
|
namespace Teknik.Utilities
|
2015-12-16 23:52:59 +01:00
|
|
|
{
|
|
|
|
public static class Constants
|
|
|
|
{
|
2016-01-30 01:16:04 +01:00
|
|
|
public const string SERVERUSER = "Server Admin";
|
2016-07-01 02:00:44 +02:00
|
|
|
public const string TRUSTEDDEVICECOOKIE = "TeknikTrustedDevice";
|
2016-10-08 07:21:28 +02:00
|
|
|
public const string LOGO_PATH = "~/Images/logo-black.svg";
|
|
|
|
public const string FAVICON_PATH = "~/Images/favicon.ico";
|
2017-01-09 23:23:57 +01:00
|
|
|
public const string ROBOTS_PATH = "~/App_Data/robots.txt";
|
2017-01-18 23:36:44 +01:00
|
|
|
public const string LOG_FILE_NAME_PREFIX = "Teknik";
|
|
|
|
public const string LOG_FILE_EXT = ".log";
|
2018-01-30 08:18:47 +01:00
|
|
|
|
|
|
|
public const string PERF_KEY = "Stopwatch";
|
|
|
|
|
|
|
|
public const string NONCE_KEY = "Nonce";
|
2018-06-15 02:57:03 +02:00
|
|
|
|
|
|
|
public const string NullIpAddress = "::1";
|
2015-12-16 23:52:59 +01:00
|
|
|
}
|
|
|
|
}
|