UNPKG

maplestory-openapi

Version:

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

19 lines (16 loc) 343 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 };