@mrmory/bggclient
Version:
Javascript client to interact with BoardGameGeek public XML API based on boardgamegeekjsclient
41 lines (34 loc) • 1.12 kB
text/typescript
import { JsonAlias, JsonClassType, JsonManagedReference, JsonProperty } from "jackson-js";
export class BggThingCommentPaginatedDto {
page!: number;
totalitems!: number;
items!: BggThingCommentDto[];
}
class BggThingCommentDto {
value!: string;
username!: string;
id!: number;
rating!: number;
}