@kfijolek/boardgamegeekclient
Version:
TypeScript client to interact with BoardGameGeek public XML API
15 lines (14 loc) • 418 B
TypeScript
import { BggPlaysPlayItemDto } from "./BggPlaysPlayItemDto";
import { BggPlaysPlayPlayerDto } from "./BggPlaysPlayPlayerDto";
export declare class BggPlaysPlayDto {
id: number;
date: string;
quantity: number;
length: number;
incomplete: number;
nowinstats: number;
location: string;
item: BggPlaysPlayItemDto;
comments: string;
players: BggPlaysPlayPlayerDto[];
}