Spaces:
Sleeping
Sleeping
| import { ApiProperty } from '@nestjs/swagger'; | |
| import { IsString, Length } from 'class-validator'; | |
| export class UpdateVisitorDto { | |
| ({ | |
| description: 'Visitor first name', | |
| example: 'John', | |
| }) | |
| () | |
| (2, 50) | |
| name?: string; | |
| ({ | |
| description: 'Visitor surname', | |
| example: 'Doe', | |
| }) | |
| () | |
| (2, 50) | |
| surname?: string; | |
| } | |