mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-15 09:11:57 +10:00
8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
import { IsNotEmpty, IsString, MinLength } from 'class-validator';
|
|
|
|
export class UpdateProfileDto {
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
name: string;
|
|
}
|