mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
20 lines
671 B
C#
20 lines
671 B
C#
namespace Teknik.Utilities
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string SERVERUSER = "Server Admin";
|
|
public const string TRUSTEDDEVICECOOKIE = "TeknikTrustedDevice";
|
|
public const string LOGO_PATH = "images/logo-black.svg";
|
|
public const string FAVICON_PATH = "images/favicon.ico";
|
|
public const string ROBOTS_PATH = "~/App_Data/robots.txt";
|
|
public const string LOG_FILE_NAME_PREFIX = "Teknik";
|
|
public const string LOG_FILE_EXT = ".log";
|
|
|
|
public const string PERF_KEY = "Stopwatch";
|
|
|
|
public const string NONCE_KEY = "Nonce";
|
|
|
|
public const string NullIpAddress = "::1";
|
|
}
|
|
}
|