libs/interfaces/src/auth/confirmationCode.interface.ts
Properties |
| code |
code:
|
Type : string
|
| createdAt |
createdAt:
|
Type : Date
|
| expiresIn |
expiresIn:
|
Type : Date
|
| id |
id:
|
Type : number
|
| Optional |
| user |
user:
|
Type : UserInterface
|
import { UserInterface } from '../user/User.interface'
export interface ConfirmationCodeInterface {
id?: number
code: string
createdAt: Date
expiresIn: Date
user: UserInterface
}