UNPKG

maplestory-openapi

Version:

This JavaScript library enables the use of the MapleStory OpenAPI of Nexon.

19 lines (16 loc) 340 B
import { GuildDto as GuildDto$1 } from '../../../common/dto/guild/guild.js'; /** * 公會識別碼資訊 */ class GuildDto extends GuildDto$1 { /** * 公會識別碼 */ oguildId; constructor(obj) { super(); const { oguild_id } = obj; this.oguildId = oguild_id; } } export { GuildDto };