packages/server/src/common/interfaces/active-user-data.interface.ts
Properties |
companyId |
companyId:
|
Type : number
|
email:
|
Type : string
|
id |
id:
|
Type : number
|
tokenId |
tokenId:
|
Type : string
|
export interface ActiveUserData {
id: number;
email: string;
companyId: number;
tokenId: string;
}