123456789101112131415161718192021222324252627 |
- import { IsNotEmpty, IsLatitude, IsLongitude } from 'class-validator';
- import { ApiProperty } from '@nestjs/swagger';
- export class WaypointDto {
- @IsNotEmpty()
- @ApiProperty({
- description: 'The unique waypoint code',
- example: 'KETAP',
- })
- identifier: string;
- @IsNotEmpty()
- @ApiProperty({
- description: 'The latitudinal component',
- example: 42.8402,
- })
- @IsLatitude()
- latitude: number;
- @IsNotEmpty()
- @ApiProperty({
- description: 'The longitudinal component',
- example: 18.8402,
- })
- @IsLongitude()
- longitude: number;
- }
|