Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
mapmarker.dto.ts 327 B
import { IsString, IsJSON } from 'class-validator';
/*
DTO: MapMarker
- represents servers data handling.
*/


export class MapMarkerDTO {
    @IsString()
    type:string;
    @IsString()
    latitude: string;
    @IsString()
    longitude: string;
    @IsString()
    timestamp: string;    
    @IsJSON()
    features: JSON;
}