1234567891011121314151617181920212223242526272829303132333435363738 |
- namespace Admin.Core.Common.Auth
- {
-
-
-
- public static class ClaimAttributes
- {
-
-
-
- public const string UserId = "id";
-
-
-
- public const string IdentityServerUserId = "sub";
-
-
-
- public const string UserName = "na";
-
-
-
- public const string UserNickName = "nn";
-
-
-
- public const string RefreshExpires = "re";
-
-
-
- public const string TenantId = "tenantid";
- }
- }
|