maplestory-openapi
Version:
This JavaScript library enables the use of the MapleStory OpenAPI of Nexon.
23 lines (18 loc) • 416 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var guild = require('../../../common/dto/guild/guild.js');
/**
* 길드 식별자 정보
*/
class GuildDto extends guild.GuildDto {
/**
* 길드 식별자
*/
oguildId;
constructor(obj) {
super();
const { oguild_id } = obj;
this.oguildId = oguild_id;
}
}
exports.GuildDto = GuildDto;