File

src/app/types/game.ts

Properties

description
description: string
id
id: string
members
members: string[]
name
name: string
owner
owner: string
players
players: Player[]
tabletop
tabletop: Tabletop
uuid
uuid: string
import { Tabletop } from './tabletop';
import { Player } from './player';

export class Game {
    id: string;
    uuid: string;
    owner?: string;
    
    name: string;
    description?: string;

    members: string[];
    players?: Player[];

    tabletop?: Tabletop;
}

results matching ""

    No results matching ""