The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
581 B
18 lines
581 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Teknik.Helpers |
|
{ |
|
public static class Constants |
|
{ |
|
public const string SERVERUSER = "Server Admin"; |
|
public const string AUTHCOOKIE = "TeknikAuth"; |
|
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"; |
|
} |
|
}
|
|
|