summaryrefslogtreecommitdiffstats
path: root/src/server/StaticData/AppConstants.cs
blob: c0c579414e39a82b7eecf31a30cef77c94ef1da3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace IOL.BookmarkThing.Server.StaticData;

public static class AppConstants
{
	public const string API_NAME = "Bookmark 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";
}