Skip to content
Snippets Groups Projects

Gamecreation

Merged Ghost User requested to merge gamecreation into Development
12 files
+ 584
427
Compare changes
  • Side-by-side
  • Inline
Files
12
import { IsString, IsDateString } from 'class-validator';
import { Timestamp } from 'typeorm';
import { IsString, IsJSON } from 'class-validator';
/*
DTO: MapMarker
- represents servers data handling.
*/
export class MapMarkerDTO {
@IsString()
@@ -10,4 +14,6 @@ export class MapMarkerDTO {
longitude: string;
@IsString()
timestamp: string;
@IsJSON()
features: JSON;
}
\ No newline at end of file
Loading