blob: 461317bf2848b3992084cdf670be18810dd0f274 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace IOL.GreatOffice.Api.Data.Static;
public static class AppConstants
{
public const string API_NAME = "Great Office API";
public const string BASIC_AUTH_SCHEME = "BasicAuthenticationScheme";
public const string TOKEN_ALLOW_READ = "TOKEN_ALLOW_READ";
public const string TOKEN_ALLOW_CREATE = "TOKEN_ALLOW_CREATE";
public const string TOKEN_ALLOW_UPDATE = "TOKEN_ALLOW_UPDATE";
public const string TOKEN_ALLOW_DELETE = "TOKEN_ALLOW_DELETE";
public const string VAULT_CACHE_KEY = "VAULT_CACHE_KEY";
}
|