1234567891011121314151617181920 |
- 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";
- }
- }
|