27 lines
1.1 KiB
C#
27 lines
1.1 KiB
C#
namespace gehGassi.Web.Auth
|
|
{
|
|
/// <summary>
|
|
/// Konstanten für Claims
|
|
/// </summary>
|
|
public static class ClaimConstants
|
|
{
|
|
public const string HasHeader = "ggApp";
|
|
public const string HasHeaderValue = "{FCBF0361-E7C3-4267-A3F1-8FE1092B8696}";
|
|
|
|
public const string PackedPermissionClaimType = "Permissions";
|
|
|
|
public const string CustomerIdClaimType = "CustomerId";
|
|
public const string CustomerUniqueIdClaimType = "CustomerUniqueId";
|
|
public const string CustomerNameClaimType = "CustomerName";
|
|
|
|
public const string SelectedCustomerIdClaimType = "SelectedCustomerId";
|
|
public const string SelectedCustomerUniqueIdClaimType = "SelectedCustomerUniqueId";
|
|
public const string SelectedCustomerNameClaimType = "SelectedCustomerName";
|
|
|
|
public const string AppUserIdClaimType = "AppUserId";
|
|
public const string AppUserNameClaimType = "AppUserName";
|
|
public const string SelectedAppUserIdClaimType = "SelectedAppUserId";
|
|
public const string SelectedAppUserNameClaimType = "SelectedAppUserName";
|
|
}
|
|
}
|