8 lines
178 B
TypeScript
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) {}
|