nest-project/src/users/dto/change-email.dto.ts

14 lines
203 B
TypeScript
Raw Normal View History

2023-02-23 23:01:51 +08:00
import { IsNotEmpty, IsEmail } from 'class-validator'
export class ChangeEmailDto {
@IsNotEmpty()
@IsEmail()
email: string
@IsNotEmpty()
verifyCode: string
@IsNotEmpty()
token: string
}