import { IsEmail, IsNotEmpty, IsString } from 'class-validator';

export class MergeAuthDto {
  @IsNotEmpty()
  @IsString()
  @IsEmail()
  email: string;

  @IsNotEmpty()
  @IsString()
  code: string;
}
