src/app/types/player.ts
| gameID |
gameID: |
| gameOwnerID |
gameOwnerID: |
| id |
id: |
| owner |
owner: |
| pendingInvite |
pendingInvite: |
| playerID |
playerID: |
export class Player {
id: string;
gameID: string;
gameOwnerID?: string;
playerID: string;
pendingInvite: boolean;
owner?: string;
}