apps/recallassess/recallassess-api/src/api/client/auth/dto/participant-sign-in.dto.ts
Properties |
Type : string
|
Decorators :
@Expose()
|
| password |
Type : string
|
Decorators :
@Expose()
|
import { IsEmail, IsNotEmpty, IsString } from "class-validator";
import { Exclude, Expose } from "class-transformer";
@Exclude()
export class ParticipantSignInDto {
@Expose()
@IsEmail()
@IsNotEmpty()
email!: string;
@Expose()
@IsString()
@IsNotEmpty()
password!: string;
}