@mrmory/bggclient
Version:
Javascript client to interact with BoardGameGeek public XML API based on boardgamegeekjsclient
35 lines (30 loc) • 1.12 kB
text/typescript
import { IBggDto } from "../interface";
import { JsonAlias, JsonClassType, JsonDeserialize, JsonIgnoreProperties, JsonProperty } from "jackson-js";
import { BggArticleDto } from "./BggThreadArticleDto";
export class BggThreadDto implements IBggDto {
id!: number;
link!: string;
numarticles!: number;
subject!: string;
articles!: BggArticleDto[];
}