Files
bigcapital/packages/server-nest/src/modules/Auth/dtos/AuthSignin.dto.ts
2025-03-29 22:29:12 +02:00

12 lines
186 B
TypeScript

import { IsNotEmpty, IsString } from 'class-validator';
export class AuthSigninDto {
@IsNotEmpty()
@IsString()
password: string;
@IsNotEmpty()
@IsString()
email: string;
}