@mrmory/bggclient
Version:
Javascript client to interact with BoardGameGeek public XML API based on boardgamegeekjsclient
37 lines (31 loc) • 1.1 kB
text/typescript
import { JsonAlias, JsonClassType, JsonIgnoreProperties, JsonManagedReference, JsonProperty } from "jackson-js";
import { IBggDto } from "../interface";
import { BggPlaysPlayDto } from "./subdto";
export class BggPlayDto implements IBggDto {
id!: number;
userid!: number;
total!: number;
page!: number;
username!: string;
plays!: BggPlaysPlayDto[];
}