apps/recallassess/recallassess-api/src/api/client/auth/dto/verify-email.dto.ts
Properties |
| token |
Type : string
|
Decorators :
@Expose()
|
import { Exclude, Expose } from "class-transformer";
import { IsNotEmpty, IsString } from "class-validator";
@Exclude()
export class VerifyEmailDto {
@Expose()
@IsString()
@IsNotEmpty()
token!: string;
}