import { IsNotEmpty, IsString } from "class-validator"
import { ApiProperty } from "@nestjs/swagger"

export class CreateEmployeeTechnologyDto {
  @ApiProperty({
    description: "Name of the technology",
    example: "React",
  })
  @IsNotEmpty()
  @IsString()
  name: string
}
