From 85eb6e60ad2feb5c4e16dab15cc601f25b408b9d Mon Sep 17 00:00:00 2001 From: Guilherme Martinelli Date: Tue, 10 Oct 2023 01:04:38 +0000 Subject: [PATCH] indentation fix game.dto --- backend/src/game/dto/game.dto.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/game/dto/game.dto.ts b/backend/src/game/dto/game.dto.ts index cf291779..9b27b4c9 100644 --- a/backend/src/game/dto/game.dto.ts +++ b/backend/src/game/dto/game.dto.ts @@ -6,10 +6,10 @@ import { Score } from './game.score.dto'; export class GameDto { gameId: string; - finished: boolean; + finished: boolean; player1: Player; player2: Player; - score: Score; + score: Score; ball: Ball; canvas: Canvas; }