working flow

This commit is contained in:
Jose Conde
2024-07-14 21:41:38 +02:00
parent 5f117667a4
commit 7741b07d60
27 changed files with 534 additions and 147 deletions

View File

@ -5,5 +5,6 @@ export interface GameSummary {
isBlocked: boolean;
isTied: boolean;
winner: PlayerDto;
score: { name: string; score: number; }[]
score: { id: string, name: string; score: number; }[],
players?: PlayerDto[];
}