Files
Chromacase/back/src/auth/dto/profile.dto.ts
2023-12-04 13:28:07 +01:00

17 lines
268 B
TypeScript

import { IsNotEmpty } from "class-validator";
import { ApiProperty } from "@nestjs/swagger";
export class Profile {
@ApiProperty()
@IsNotEmpty()
username: string;
@ApiProperty()
@IsNotEmpty()
password: string;
@ApiProperty()
@IsNotEmpty()
email: string;
}