Files
Reactive-Resume/server/src/auth/dto/update-profile.dto.ts
2023-01-19 00:11:15 +01:00

8 lines
148 B
TypeScript

import { IsNotEmpty, IsString, MinLength } from 'class-validator';
export class UpdateProfileDto {
@IsString()
@IsNotEmpty()
name: string;
}