using System.Security.Claims; namespace Znyc.Recruitment.Admin.Commons.Extensions { /// /// public static class ZnycClaimTypes { /// /// Default: /// public static string UserName { get; set; } = ClaimTypes.Name; /// /// Default: /// public static string UserId { get; set; } = ClaimTypes.NameIdentifier; /// /// Default: /// public static string Role { get; set; } = ClaimTypes.Role; /// /// Default: /// public static string Email { get; set; } = ClaimTypes.Email; /// /// Default: "email_verified". /// public static string EmailVerified { get; set; } = "email_verified"; /// /// Default: "phone_number". /// public static string PhoneNumber { get; set; } = "phone_number"; /// /// Default: "phone_number_verified". /// public static string PhoneNumberVerified { get; set; } = "phone_number_verified"; /// /// Default: "tenantid". /// public static string TenantId { get; set; } = "tenantid"; /// /// Default: "editionid". /// public static string EditionId { get; set; } = "editionid"; /// /// Default: "client_id". /// public static string ClientId { get; set; } = "client_id"; } }