You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
419 B
15 lines
419 B
namespace Win_in.Sfs.Auth;
|
|
|
|
public static class AuthConsts
|
|
{
|
|
|
|
public const string WorkGroupClaimType = "work-group";
|
|
public const string WorkGroupSeparator = ",";
|
|
|
|
public const string RootPath = "api/auth/";
|
|
|
|
public const string DepartmentCodePropertyName = "DepartmentCode";
|
|
public const string IsActivePropertyName = "IsActive";
|
|
|
|
public const string DescriptionPropertyName = "Description";
|
|
}
|
|
|