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[];
}
