summaryrefslogtreecommitdiffstats
path: root/server/src/Data/Static/AppConstants.cs
blob: 61e5cd5ac33ea8f7b20face3641c85440854e7fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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";
}