Files
pingvin-share/backend/src/auth/dto/authSignIn.dto.ts
2022-10-09 22:30:32 +02:00

8 lines
178 B
TypeScript

import { PickType } from "@nestjs/swagger";
import { AuthDTO } from "./auth.dto";
export class AuthSignInDTO extends PickType(AuthDTO, [
"email",
"password",
] as const) {}