aswi2021codebakers-gitlab/src/app/auth/models/user.ts @ 1673fcba
1 |
/* tslint:disable */
|
---|---|
2 |
/* eslint-disable */
|
3 |
import {UserInfo} from '../../shared/api/endpoints/models/user-info'; |
4 |
import {UserCookie} from '../../shared/api/endpoints/models/user-cookie'; |
5 |
|
6 |
/**
|
7 |
* User state model
|
8 |
*/
|
9 |
export interface User { |
10 |
userInfo?: UserInfo; |
11 |
isLoggedIn?: boolean; |
12 |
userCookie?: UserCookie |
13 |
}
|