import { ApiProperty } from '@nestjs/swagger';
import { UserDTO } from './user-dto';
import { IsNotEmpty, IsString } from 'class-validator';

export class UserExtendedDTO extends UserDTO {
  @IsString()
  @IsNotEmpty()
  @ApiProperty({})
  name: string;
}
