aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Static/AppConstants.cs
blob: 85bf3db0abab426103b0e464f13c06f514e12403 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace IOL.GreatOffice.Api.Models.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";
}