mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-04 16:49:37 +00:00
11 lines
417 B
Dart
11 lines
417 B
Dart
class JwtClaims {
|
|
|
|
static const String id = 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier';
|
|
|
|
static const String email = 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress';
|
|
|
|
static const String phone = 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/mobilephone';
|
|
|
|
static const String roles ='http://schemas.microsoft.com/ws/2008/06/identity/claims/role';
|
|
}
|