UNPKG

maplestory-openapi

Version:

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

23 lines (18 loc) 433 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var character = require('../../../common/dto/character/character.js'); /** * 캐릭터 식별 정보 */ class CharacterDto extends character.CharacterDto { /** * 캐릭터 식별자 */ ocid; constructor(obj) { super(); const { ocid } = obj; this.ocid = ocid; } } exports.CharacterDto = CharacterDto;