@mrmory/bggclient
Version:
Javascript client to interact with BoardGameGeek public XML API based on boardgamegeekjsclient
41 lines (33 loc) • 1.07 kB
text/typescript
import { JsonAlias, JsonClassType, JsonManagedReference, JsonProperty } from "jackson-js";
import { IBggDto } from "../interface";
import { BggLinkDto } from "./subdto";
export class BggFamilyDto implements IBggDto {
name!: string;
description!: string;
thumbnail!: string;
image!: string;
id!: number;
type!: string;
value!: string;
things!: BggLinkDto[]
}