diff --git a/src/app/interfaces/game.interface.ts b/src/app/interfaces/game.interface.ts index 1156c33..bf86b83 100644 --- a/src/app/interfaces/game.interface.ts +++ b/src/app/interfaces/game.interface.ts @@ -1,7 +1,7 @@ export interface Game { - id: string; - title: string; - image: string; - description: string; - } - \ No newline at end of file + id: number; //TODO: Заменить на строку + gameId: string + title: string; + image: string; + description: string; +}