maplestory-openapi
Version:
This JavaScript library enables the use of the MapleStory OpenAPI of Nexon.
19 lines (16 loc) • 366 B
JavaScript
import { CharacterDto as CharacterDto$1 } from '../../../common/dto/character/character.js';
/**
* Character identifier information
*/
class CharacterDto extends CharacterDto$1 {
/**
* Character identifier
*/
ocid;
constructor(obj) {
super();
const { ocid } = obj;
this.ocid = ocid;
}
}
export { CharacterDto };