aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Static/AppConstants.cs
blob: d0a888bbe4b9a43619dd11855660f1bebd715c71 (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 = "Greatoffice 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";
}