9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
import { IsObject, IsString } from "class-validator";
|
|
|
|
export class PasskeyRegisterDto {
|
|
@IsObject()
|
|
credentialResponse: any;
|
|
|
|
@IsString({ message: '通行证名称只能是字符串' })
|
|
name: string;
|
|
} |