From 763d20b7b41b005b73fc1952cc12d2529f8380f2 Mon Sep 17 00:00:00 2001
From: L4168 <L4168@student.jamk.fi>
Date: Tue, 2 Jul 2019 10:04:52 +0300
Subject: [PATCH] subDTO for centerJSON

---
 src/game/game.json.dto.ts | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 src/game/game.json.dto.ts

diff --git a/src/game/game.json.dto.ts b/src/game/game.json.dto.ts
new file mode 100644
index 0000000..31bb481
--- /dev/null
+++ b/src/game/game.json.dto.ts
@@ -0,0 +1,9 @@
+import { GameDTO } from './game.dto';
+import { IsNumber } from 'class-validator';
+
+export class CenterDTO {
+  @IsNumber()
+  lat: number;
+  @IsNumber()
+  lng: number;
+}
-- 
GitLab